Split an image using a threshold
4 ビュー (過去 30 日間)
古いコメントを表示
Hello, ı have image(2230*1949 double) . I want to Split an it to 2 image using a threshold value. How can i do?
0 件のコメント
採用された回答
Image Analyst
2020 年 6 月 6 日
Try this
brightThings = grayImage > yourThresholdValue; % Creates a binary (logical) image.
imshow(brightThings);
props = regionprops(brightThings, 'All') % Measure a bunch of things about each bright blob.
Obviously, change variable names if you have to, to match what names you already have.
If you're just beginning image processing you really need to step through my Image Segmentation Tutorial in my File Exchange : http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862&sort=downloads_desc.
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!