![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/321793/image.png)
How to Threshold Crop an Image for analysis
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Brian Peoples
il 24 Giu 2020
Commentato: Brian Peoples
il 26 Giu 2020
Basically all I want to do is perform a lighting analysis on the hair itself in the border i set for it (blue tape). Is there a way I can crop this using some sort of color threshhold? the picture setup should be consistant everytime (i dont want to have to bother w imcrop(). Here is the image:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/321496/image.jpeg)
0 Commenti
Risposta accettata
darova
il 25 Giu 2020
Maybe simple binarization?
I0 = imread('image.jpeg');
I1 = I0(:,:,3);
I2 = im2bw(I1,graythresh(I1)-0.1);
imshowpair(I0,I2,'montage')
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/321793/image.png)
5 Commenti
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!