What is Maximum Value Profile in an image?

2 views (last 30 days)
After reconstructing an image, it is mentioned (in a paper) that Maximum Value Profile of that image is shown. What is that? How to do it?

Accepted Answer

Walter Roberson
Walter Roberson on 17 May 2016
MVP = max(Your2DImage);
Now MVP is a row vector which contains the maximum value from each column. You can also use max(Your2DImage, 2) to work along rows.
  7 Comments
Walter Roberson
Walter Roberson on 25 May 2016
When I look at the paper, they are not applying Maximum Value Profile to an image, they are applying it to a 3D set of data. In such a case, the Maximum Value Profile is max() along some particular axes.

Sign in to comment.

More Answers (0)

Categories

Find more on Read, Write, and Modify Image in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!