How to Threshold Crop an Image for analysis

3 visualizaciones (últimos 30 días)
Brian Peoples
Brian Peoples el 24 de Jun. de 2020
Comentada: Brian Peoples el 26 de Jun. de 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:

Respuesta aceptada

darova
darova el 25 de Jun. de 2020
Maybe simple binarization?
I0 = imread('image.jpeg');
I1 = I0(:,:,3);
I2 = im2bw(I1,graythresh(I1)-0.1);
imshowpair(I0,I2,'montage')
  5 comentarios
Brian Peoples
Brian Peoples el 26 de Jun. de 2020
I understand this would probably involve reshaping the matrix to a certain extent
Brian Peoples
Brian Peoples el 26 de Jun. de 2020
nvm i figured it out

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Image Processing Toolbox en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by