<div dir="ltr">Hello,<div><br></div><div>I am working with VTK 6.3.0 in Python.  I am importing an stl model and creating a vtkActor.  Then I am taking that actor and creating a silhouette with vtkPolyDataSilhouette. Once I have the silhouette created, I am able to make it map it's output to an actor and render it in the scene.  This works just great.  My problem is that I also want to create another copy of this silhouette and project it from a specified viewpoint onto a plane.  If I could somehow get a vtkPolyData as an output from vtkPolyDataSilhouette, I could do a deepcopy to a new vtkPolyData, do the projection and map that to a new vtkActor.  For some reason, everytime I try to get a vtkPolyData from the vtkPolyDataSilhouette it is empty (no cells, no points, no lines, no anything).  I am sure I am just missing something simple, but I have been looking for 2 days and am stumped.  Doesn't help that I am new to VTK.</div><div><br></div><div>Here is a code snippet:</div><div><br></div><div><div>                silhouette = vtk.vtkPolyDataSilhouette()</div><div>                silhouette.ReleaseDataFlagOff()</div><div>                silhouette.SetInputData(actor.GetMapper().GetInputAsDataSet())</div><div>                silhouette.SetCamera(camera)</div><div>                silhouette.SetEnableFeatureAngle(0)</div><div>                silhouette_mapper = vtk.vtkPolyDataMapper()</div><div>                silhouette_mapper.SetInputConnection(silhouette.GetOutputPort())</div><div>                silhouette_actor = vtk.vtkActor()</div><div>                silhouette_actor.SetMapper(silhouette_mapper)</div></div><div><div>                self.renderer.AddActor(silhouette_actor)</div><div>                self.viewer.Render()</div></div><div><br></div><div>To get the vtkPolyData, I have tried  polydata = silhouette.GetOutput() as well as silhouette_actor.GetMapper().GetInputAsDataSet().  I've tried to connect the output of the vtkSilhouette to another algorithm and grab the output...  nothing seems to return anything but an empty polydata... yet, the silhouette_actor renders as expected.  Please help...</div><div><br></div><div>SHAWN</div></div>