How to choose a specific area of an image?
5 次查看(过去 30 天)
显示 更早的评论
I would like to ask you how to choose a specific area of an image and then use the elements of this content?
5 个评论
Yap Sam
2017-12-9
Hi, I have a question here. Lets say, I have defined an area of polygon using its x and y coordinates. But,how do I able to find out the mean pixels intensity of this area of polygon? Secondly,how should I apply the"if" condition to thershold a certain value of mean intensity of this polygon area.
Kindly advice
Image Analyst
2017-12-9
Make a mask and then use mean on the masked image:
mask = poly2mask(x, y, rows, columns);
theMeanIntensity = mean(grayImage(mask));
采纳的回答
Stephen23
2015-10-5
You need to use some kind of array indexing. Often the easiest is to use logical indexing, which would allow you to select the area that you want.
0 个评论
更多回答(1 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!