peak value of gradient magnitude for every pixel of one image

조회 수: 3 (최근 30일)
jing huang
jing huang 2017년 7월 11일
답변: Nirav Sharda 2017년 7월 13일
how can i get peak value of gradient magnitude for every pixel of one image with matlab

채택된 답변

Nirav Sharda
Nirav Sharda 2017년 7월 13일
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개)

카테고리

Help CenterFile Exchange에서 Descriptive Statistics에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by