how can i set the pixel intensity values (I) that fall in the range, 200> I >30 to I = 200.
1 回表示 (過去 30 日間)
古いコメントを表示
I am dealing with large images
0 件のコメント
採用された回答
Image Analyst
2015 年 7 月 20 日
Try adapthisteq(). Try it yourself first. It will get rid of the dark background and normalize all the writing. try different parameters until you get it correct. Come back with your code if you need help.
10 件のコメント
Image Analyst
2015 年 7 月 24 日
You might try bwconvhull() on the binary image before calculating the area and perimeter. This will round out the blobs and make that bottom one have not so high a circularity.
その他の回答 (1 件)
David Young
2015 年 7 月 17 日
Img(200 > Img & Img > 30) = 200;
3 件のコメント
Walter Roberson
2015 年 7 月 17 日
That is probably more general than you intended, but your question was very general. What kinda functions to achieve what goal?
Image Analyst
2015 年 7 月 17 日
Here's some help: http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862, especially the Image Segmentation Tutorial.
参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!