Get the profile/shape/outline of several polygons

Hi,

I have 3D polygonal vtk data, which I want to reduce to 2D and then get the outline/profile of that shape. The latter is what I struggle to archive.

My best bet yet is use the Calculator (Coordinate Results and use the expression coordsX*iHat + coordsY*jHat according to this stackoverflow suggestion). Then I used the Feature Edges filter as suggested, but then I see all edges stacked on top of each other (see picture below) and I don’t know how to proceed from here to get only the “outer most” edge.

Additionally, I found this forum post here, which suggests to use Extract Surface. This does not really change my result (and running Clean To Grid does result in me being not allowed to apply filters anymore).

Solutions involving the paraview software would be appreciated the most, but if there are solutions which involve switching to some python modules for vtk data, that can also work.

Hi @Marek-Muchow !

Have you tried Delaunay 2D filter after the 2D projection? Then using the connectivity filter and feature edges extraction may give the expected result.

Best,

François

@Charles_Gueunet

Thanks @Francois_Mazen - that helped a lot. I just have one question left.

To archive the result in the picture I applied the calculator (as given above), then the Delauny2D filter and then the Feature Edges, with only the Boundary Edges turned on.

I was now wondering if there is a way to refine the Boundary Edges? As seen below, there is sometimes quite the gap between the outline and the 2D shape.


The result from the calculator is in red, the results of the Delaunay 2D are the black points and the outline of the Feature Edges is in pink.