<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 12pt;
font-family:Calibri
}
--></style></head>
<body class='hmmessage'><div dir='ltr'>Hi all,<br><br>I'm trying to calculate the circumference of the human head in 3D. I'm using VTK 5.10.1 and Python 2.7 64-bit. I want to calculate the intersection of a plane passing through certain point on the head. I then want to extract the boundary and calculate the length of this polyline. First, I want to visualize the boundary to make sure the extraction is working as expected.<br><br>As far as I understand, I can use vtkCutter to cut a slice from the original image. When I modify the vtkCutter ClipCow.py example, I can use vtkFeatureExtract to extract the boundary and write it to a .vtk file for visualization:<br><br>&nbsp;&nbsp;&nbsp; # Here we are cutting the cow. Cutting creates lines where the cut<br>&nbsp;&nbsp;&nbsp; # function intersects the model. (Clipping removes a portion of the<br>&nbsp;&nbsp;&nbsp; # model but the dimension of the data does not change.)<br>&nbsp;&nbsp;&nbsp; #<br>&nbsp;&nbsp;&nbsp; # The reason we are cutting is to generate a closed polygon at the<br>&nbsp;&nbsp;&nbsp; # boundary of the clipping process. The cutter generates line<br>&nbsp;&nbsp;&nbsp; # segments, the stripper then puts them together into polylines. We<br>&nbsp;&nbsp;&nbsp; # then pull a trick and define polygons using the closed line<br>&nbsp;&nbsp;&nbsp; # segments that the stripper created.<br>&nbsp;&nbsp;&nbsp; cutEdges = vtk.vtkCutter()<br>&nbsp;&nbsp;&nbsp; cutEdges.SetInputConnection(cow.GetOutputPort())<br>&nbsp;&nbsp;&nbsp; cutEdges.SetCutFunction(plane)<br>&nbsp;&nbsp;&nbsp; cutEdges.GenerateCutScalarsOn()<br>&nbsp;&nbsp;&nbsp; cutEdges.SetValue(0, 0.5)<br>&nbsp;&nbsp;&nbsp; cutStrips = vtk.vtkStripper()<br>&nbsp;&nbsp;&nbsp; cutStrips.SetInputConnection(cutEdges.GetOutputPort())<br>&nbsp;&nbsp;&nbsp; cutStrips.Update()<br>&nbsp;&nbsp;&nbsp; cutPoly = vtk.vtkPolyData()<br>&nbsp;&nbsp;&nbsp; cutPoly.SetPoints(cutStrips.GetOutput().GetPoints())<br>&nbsp;&nbsp;&nbsp; cutPoly.SetPolys(cutStrips.GetOutput().GetLines())<br><br>&nbsp;&nbsp;&nbsp; # Extract boundary from cutPoly<br>&nbsp;&nbsp;&nbsp; cutBoundary = vtk.vtkFeatureEdges()<br>&nbsp;&nbsp;&nbsp; cutBoundary.SetInput(cutPoly)<br>&nbsp;&nbsp;&nbsp; cutBoundary.Update()<br>&nbsp;&nbsp;&nbsp; # Write cut line to .vtk file<br>&nbsp;&nbsp;&nbsp; polyWriter = vtk.vtkPolyDataWriter()<br>&nbsp;&nbsp;&nbsp; polyWriter.SetInput(cutBoundary.GetOutput())<br>&nbsp;&nbsp;&nbsp; polyWriter.SetFileName("cutPoly.vtk")<br>&nbsp;&nbsp;&nbsp; polyWriter.Write()<br><br>The code works as intended. However, if I try using it with my own code, it won't read the surface data correctly:<br><br>&nbsp;&nbsp;&nbsp; # Circumference plane (used to cut)<br>&nbsp;&nbsp;&nbsp; circPlaneSource = vtk.vtkPlaneSource()<br>&nbsp;&nbsp;&nbsp; circPlaneSource.SetOrigin(G - <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 150*self.midSagittalPlaneNormal)<br>&nbsp;&nbsp;&nbsp; circPlaneSource.SetPoint1(Op -<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 150*self.midSagittalPlaneNormal)<br>&nbsp;&nbsp;&nbsp; circPlaneSource.SetPoint2(G +<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 150*self.midSagittalPlaneNormal)<br>&nbsp;&nbsp;&nbsp; circPlaneSource.SetResolution(15, 15)<br>&nbsp;&nbsp;&nbsp; circPlaneSource.Update()<br><br>&nbsp;&nbsp;&nbsp; surface = vtk.vtkSTLReader()<br>&nbsp;&nbsp;&nbsp; surface.SetFileName(fileName)<br><br>&nbsp;&nbsp;&nbsp; # Cut a slice out of the surface and convert it to a PolyData object<br>&nbsp;&nbsp;&nbsp; cutEdges = vtk.vtkCutter()<br>&nbsp;&nbsp;&nbsp; cutEdges.SetInputConnection(surface.GetOutputPort())<br>&nbsp;&nbsp;&nbsp; cutEdges.SetCutFunction(circPlaneSource.GetOutput())<br>&nbsp;&nbsp;&nbsp; cutEdges.GenerateCutScalarsOn()<br>&nbsp;&nbsp;&nbsp; cutEdges.SetValue(0, 0.5)<br>&nbsp;&nbsp;&nbsp; cutStrips = vtk.vtkStripper()<br>&nbsp;&nbsp;&nbsp; cutStrips.SetInputConnection(cutEdges.GetOutputPort())<br>&nbsp;&nbsp;&nbsp; cutStrips.Update()<br>&nbsp;&nbsp;&nbsp; cutPoly = vtk.vtkPolyData()<br>&nbsp;&nbsp;&nbsp; cutPoly.SetPoints(cutStrips.GetOutput().GetPoints())<br>&nbsp;&nbsp;&nbsp; cutPoly.SetPolys(cutStrips.GetOutput().GetLines())<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; # Extract boundary from cutPoly<br>&nbsp;&nbsp;&nbsp; cutBoundary = vtk.vtkFeatureEdges()<br>&nbsp;&nbsp;&nbsp; cutBoundary.SetInput(cutPoly)<br>&nbsp;&nbsp;&nbsp; cutBoundary.Update()<br><br>&nbsp;&nbsp;&nbsp; # Write cut line to .vtk file<br>&nbsp;&nbsp;&nbsp; polyWriter = vtk.vtkPolyDataWriter()<br>&nbsp;&nbsp;&nbsp; polyWriter.SetInput(cutBoundary.GetOutput())<br>&nbsp;&nbsp;&nbsp; polyWriter.SetFileName("test.vtk")<br>&nbsp;&nbsp;&nbsp; polyWriter.Write()<br><br>I don't get an error message, the code just hangs at the cutEdges.SetInputConnection(...). The only significant difference as far as I can tell is that I'm using an .stl file instead of a .g file. Shouldn't the outputport data from vtkSTLReader and vtkBYUReader be the same (a vtkAlgorithm object in this case)? <br><br>Though I've been using bits and pieces of vtk code over the past year, I'm still very unexperienced in VTK (and image processing in general). Am I supposed to extract the data from vtkSTLReader in a different way? Any help would be greatly appreciated.<br><br>Kind regards,<br><br>Daniel<br>                                               </div></body>
</html>