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 件のコメント
samiy goller
2012 年 9 月 9 日
hi dear, if i want separate spine from back,in MRI image. what are we do?
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!