peak value of gradient magnitude for every pixel of one image
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
jing huang
il 11 Lug 2017
Risposto: Nirav Sharda
il 13 Lug 2017
how can i get peak value of gradient magnitude for every pixel of one image with matlab
0 Commenti
Risposta accettata
Nirav Sharda
il 13 Lug 2017
Once you have the gradient magnitude of the 3-D image, you can use the max function on the third dimension. As an example if you use the following example:
You can use the following command.
MaxGradients = max(Gmag,[],3);
I hope this helps.
0 Commenti
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!