how to set nan to areas outsid a polygon on the image
4 次查看(过去 30 天)
显示 更早的评论
i have the vertices and facec of a figure i want to set all area outsid this boudaries to nan and save the image matrix. image matrix contain the polygon defined by vertices and faces and nan outside it.plz some help
0 个评论
回答(7 个)
Kevin Moerman
2012-1-31
Then its more complicated. When you say vertices and faces do you mean a tesselation? e.g. a Delaunay tesselation? Of the head volume or just the outer surface?
For volume (e.g. tetrahedrons) tesselations you could use:
t = tsearchn(X,TES,XI);
which returns NaN for points outside of the tesselation (actually outside of the convex hull in case of a Delaunay tesselation). I've tried this for some non-Delaunay derived tesselations but I'm not sure if that is allowed/100% correct so you should check. (you could also look at using [k,d]= dsearchn(X,TES,XI) which allows you to check for distance to your vertices for each point and then formulate a treshold).
If you only have vertices and faces for the boundary of the head (e.g. surface triangulation) then you could add a known inner point to which all triangles can form a valid tetrahedron and then create your own tesselation. But this may not work for all boundary triangles (I imagine it gets complicated at the ears).
Alternatively if you work with image/voxel coordinates only and you have the indices for the voxels in the head. Lets say these are IND and M is your 3D image matrix then you could create your image matrix containing nan's as follows:
M_nan=nan(size(M)); %Matrix filled with nan's the size of M M_nan(IND)=M(IND); %Replace entries at IND with M(IND)
Or if L is a logic array describing the head entries then simply M(~L)=nan;
Kevin
0 个评论
Image Analyst
2012-1-31
If you know the coordinates for each slice, then you can use poly2mask() to get a binary image of your "in polygon" area. Then say
sliceImage(~binaryMask) = nan;
Do that for every slice.
1 个评论
Kevin Moerman
2012-1-31
If its a 2D image you can use the inpolygon command.
Your polygon (which needs to form the boundary of your patch data) is defined by all vertices that have edges that are only part of 1 face.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Delaunay Triangulation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!