Many thanks for the help. <br><br>Unfortunately I could not figure out the appropriate member of vtkPolyDataMapper() to define the vtkColorTransferFunction(). Would you point me further?<br><br>Thanks<br><br><div class="gmail_quote">
On Mon, Feb 2, 2009 at 11:06 AM, Amy Squillacote <span dir="ltr">&lt;<a href="mailto:ahs@cfdrc.com">ahs@cfdrc.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
You don&#39;t set the vtkColorTransferFunction on a vtkProperty; you set it on a vtkMapper (or vtkPolyDataMapper, in your case). vtkActor&#39;s SetProperty method takes a vtkProperty, so that isn&#39;t the problem.<div class="Ih2E3d">
<br>
<br>
- Amy<br>
<br>
Hom Nath Gharti wrote:<br>
</div><div><div></div><div class="Wj3C7c"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Thanks for the suggestion. I have the python code like this:<br>
<br>
import vtk<br>
<br>
# Create rendering window and renderer<br>
ren = vtk.vtkRenderer()<br>
renWin = vtk.vtkRenderWindow()<br>
renWin.AddRenderer(ren)<br>
renWin.SetSize(600, 600)<br>
<br>
# Interacting window<br>
iren = vtk.vtkRenderWindowInteractor()<br>
iren.SetRenderWindow(renWin)<br>
<br>
# Read VTK image data<br>
reader = vtk.vtkXMLImageDataReader()<br>
reader.SetFileName(&quot;py_3d_strike0_stack_XY.vti&quot;)<br>
<br>
plane=vtk.vtkImageDataGeometryFilter()<br>
plane.SetInputConnection(reader.GetOutputPort())<br>
plane.SetExtent(0, 60, 0, 60, 0, 0)<br>
#srange = plane.GetOutput().GetPointData().GetScalars().GetRange()<br>
<br>
warp = vtk.vtkWarpScalar()<br>
warp.SetInputConnection(plane.GetOutputPort())<br>
warp.UseNormalOn<br>
warp.SetNormal(0.0,0.0,1.0)<br>
warp.SetScaleFactor(2.0)<br>
<br>
# Color map<br>
color=vtk.vtkColorTransferFunction()<br>
color.SetColorSpaceToDiverging()<br>
<br>
vprop=vtk.vtkProperty()<br>
vprop.SetColor(color)<br>
<br>
mapper = vtk.vtkPolyDataMapper()<br>
mapper.SetInputConnection(warp.GetOutputPort())<br>
<br>
actor = vtk.vtkActor()<br>
actor.SetMapper(mapper)<br>
actor.SetProperty(vprop)<br>
actor.GetProperty().SetRepresentationToWireframe()<br>
actor.SetPosition(0.0,0.0,200.0) #Translate<br>
<br>
# Add the actors to the renderer, set the background<br>
ren.AddActor(actor)<br>
<br>
ren.ResetCamera()<br>
ren.GetActiveCamera().Azimuth(0)<br>
ren.GetActiveCamera().Elevation(-70)<br>
ren.SetBackground(1.0, 1.0, 1.0)<br>
ren.ResetCameraClippingRange()<br>
<br>
#iren.Initialize()<br>
renWin.Render()<br>
iren.Start()<br>
<br>
<br>
Obviously I get the error in in &#39; actor.SetProperty(vprop) &#39; and I cannot implement vtkVolumeProperty() here. Am I missing something?<br>
<br>
Any help/suggestions will greatly be appreciated.<br>
<br>
Thanks,<br>
Hom Nath<br>
<br>
</blockquote>
<br></div></div><div><div></div><div class="Wj3C7c">
-- <br>
Amy Squillacote &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Phone: (256) 726-4839<br>
Sr. Computer Scientist &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Fax: (256) 726-4806<br>
CFD Research Corporation &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Web: <a href="http://www.cfdrc.com" target="_blank">http://www.cfdrc.com</a><br>
215 Wynn Drive, Suite 501<br>
Huntsville, AL &nbsp;35805<br>
<br>
<br>
</div></div></blockquote></div><br>