<div dir="ltr">Polydata are just surface mesh so contouring them will mean creating an iso line. <div>We don't have such filter implemented inside vtk.js.</div></div><br><div class="gmail_quote"><div dir="ltr">On Wed, Jul 25, 2018 at 6:34 AM marf <<a href="mailto:marvin.huber@basf.com">marvin.huber@basf.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello guys, I have some polydata and want to extract its surface. I stumble<br>
upon vtkImageMarchingCubes, which seemed to be exactly what I need. Only it<br>
is not able to handle polydata. I tried using it like this:<br>
<br>
*const cubes = vtk.Filters.General.vtkImageMarchingCubes.newInstance();<br>
cubes.setContourValue(0.5);<br>
cubes.setInputConnection(this.reader.getOutputPort());<br>
cubes.update();<br>
this.mapper.setInputConnection(cubes.getOutputPort());*<br>
<br>
But using it like this throws an error<br>
<br>
*ERROR TypeError: o.getOrigin is not a function*<br>
<br>
Where, as I figured out, o is my polydata, which indeed does not have a<br>
getOrigin method. From looking at ImageMarchingCube's code, I also figured<br>
out it would then need a getSpacing() and getDimensions() method.<br>
So my question is, what kind of data do I feed to ImageMarchingCubes or is<br>
there any way to get it to work with polydata?<br>
Greetings, Marvin<br>
<br>
<br>
<br>
--<br>
Sent from: <a href="http://vtk.1045678.n5.nabble.com/VTK-Users-f1224199.html" rel="noreferrer" target="_blank">http://vtk.1045678.n5.nabble.com/VTK-Users-f1224199.html</a><br>
_______________________________________________<br>
Powered by <a href="http://www.kitware.com" rel="noreferrer" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" rel="noreferrer" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the VTK FAQ at: <a href="http://www.vtk.org/Wiki/VTK_FAQ" rel="noreferrer" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
<br>
Search the list archives at: <a href="http://markmail.org/search/?q=vtkusers" rel="noreferrer" target="_blank">http://markmail.org/search/?q=vtkusers</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="https://public.kitware.com/mailman/listinfo/vtkusers" rel="noreferrer" target="_blank">https://public.kitware.com/mailman/listinfo/vtkusers</a><br>
</blockquote></div>