Filter löschen
Filter löschen

Split an image using a threshold

1 Ansicht (letzte 30 Tage)
Merve YILDIRIM
Merve YILDIRIM am 6 Jun. 2020
Beantwortet: Image Analyst am 6 Jun. 2020
Hello, ı have image(2230*1949 double) . I want to Split an it to 2 image using a threshold value. How can i do?

Akzeptierte Antwort

Image Analyst
Image Analyst am 6 Jun. 2020
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.

Weitere Antworten (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by