필터 지우기
필터 지우기

To identify the pixels with the highest intensity (index) value in a figure.

조회 수: 3 (최근 30일)
U B
U B 2021년 12월 15일
댓글: U B 2021년 12월 15일
I want to identify the value/values which has the highest intensity value in a figure . To read an image, im using the below code.
a = imread('Fig.png');
a1 = sum(a,3);
figure, t=imagesc(a1),axis square;
Using a data tip, I can see the value of index and corresponding (X,Y). I want those pixels to be identified on that figure itself. How do I do that?

채택된 답변

Image Analyst
Image Analyst 2021년 12월 15일
Try this:
a = imread('Fig.png');
a1 = sum(a, 3);
imshow(a1, []);
axis('on', 'image');
impixelinfo; % Show RGB values in status line at bottom left.
% Find max value
maxValue = max(a1(:))
% Find where it occurs and put red crosshairs there in the overlay.
[rows, columns] = find(a1 == maxValue);
for k = 1 : length(rows)
hold on;
plot(columns(k), rows(k), 'r+', 'MarkerSize', 50, 'LineWidth', 2);
end
hold off;

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by