how can i set the pixel intensity values (I) that fall in the range, 200> I >30 to I = 200.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Respuesta aceptada
Image Analyst
el 20 de Jul. de 2015
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 comentarios
Image Analyst
el 24 de Jul. de 2015
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.
Más respuestas (1)
David Young
el 17 de Jul. de 2015
Img(200 > Img & Img > 30) = 200;
3 comentarios
Walter Roberson
el 17 de Jul. de 2015
That is probably more general than you intended, but your question was very general. What kinda functions to achieve what goal?
Image Analyst
el 17 de Jul. de 2015
Here's some help: http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862, especially the Image Segmentation Tutorial.
Ver también
Categorías
Más información sobre Image Processing Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!