![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/174030/image.jpeg)
How can I find maxima and minima points of intensity plot of one row of an image?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Samidha
el 6 de Dic. de 2013
Comentada: Samidha
el 10 de Dic. de 2013
I want to plot intensity of single row of an MRI image, for that firstly I wrote -
i=dicomread('mri_7.dcm');
imshow(i)
improfile
from this I got intensity plot of any row or column. Now I want to find maximum and minimum values of that plot.So,please help me to get solution of this obstacle.
Thank you
0 comentarios
Respuesta aceptada
Image Analyst
el 6 de Dic. de 2013
Don't use i (the imaginary variable) as an image name or loop counter.
Try this:
oneRow = grayImage(myRow, :);
% Find the min and max
[minGL, indexOfMin] = min(oneRow)
[maxGL, indexOfMax] = max(oneRow)
See my demo, test.m, attached below in blue, which will generate the following figure.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/174030/image.jpeg)
2 comentarios
Ver también
Categorías
Más información sobre Surface and Mesh Plots 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!