Find max value on images
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
How to find the max value of those punch of images
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/590987/image.jpeg)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/590992/image.jpeg)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/590997/image.jpeg)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/591002/image.jpeg)
0 comentarios
Respuestas (1)
Image Analyst
el 20 de Abr. de 2021
What is a "punch" of images? And what is your definition of brightest for a color image? Do you just want to convert to gray scale and find the brightest? Something like (untested)
grayImage = rgb2gray(rgbImage);
maxValue = max(grayImage(:))
maxMap = grayImage == maxValue;
rgb2 = imoverlay(grayImage, maxMap);
imshow(rgb2);
11 comentarios
Walter Roberson
el 21 de Abr. de 2021
Classification by shape is a totally different topic. You asked that question in https://www.mathworks.com/matlabcentral/answers/808630-how-to-classify-images-depending-on-the-shape-of-each-image-s-object?s_tid=prof_contriblnk
Image Analyst
el 21 de Abr. de 2021
@Mohamed Elbeialy, I'll take a look at that when/if I get time. But did this answer solve this problem? If so, please accept it.
Ver también
Categorías
Más información sobre 3-D Volumetric Image Processing 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!