How can I find maxima and minima points of intensity plot of one row of an image?
Mostra commenti meno recenti
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
Risposta accettata
Più risposte (1)
you can use
max(i) % to find maximum value in a row/column vector
and
min(i) % to find minimum value in a row/column vector
sharing image to give specific solution will be further helpful
Categorie
Scopri di più su Image Processing Toolbox in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
