필터 지우기
필터 지우기

How to get onclick coordinate pixel value and location from an image?

조회 수: 148 (최근 30일)
Hey frndz, I am new in Matlab. Since 3months ago I am using matlab. Within these 3 months I just learned some matrix manipulation functionm addition, string handling etc. So I need all of your help. Please please help me............... How to get onclick coordinate pixel value and location from an image? Actually I want to get some location(x,y) and corresponding pixel value after clicking on image. how can I do this????????

채택된 답변

David Young
David Young 2014년 2월 24일
편집: David Young 2014년 2월 24일
Use ginput
If you want to record multiple points, you can use something like the function that follows. You can easily modify it to display dots rather than lines between the points - check the documentation for the plot function.
function pts = readPoints(image, n)
%readPoints Read manually-defined points from image
% POINTS = READPOINTS(IMAGE) displays the image in the current figure,
% then records the position of each click of button 1 of the mouse in the
% figure, and stops when another button is clicked. The track of points
% is drawn as it goes along. The result is a 2 x NPOINTS matrix; each
% column is [X; Y] for one point.
%
% POINTS = READPOINTS(IMAGE, N) reads up to N points only.
if nargin < 2
n = Inf;
pts = zeros(2, 0);
else
pts = zeros(2, n);
end
imshow(image); % display image
xold = 0;
yold = 0;
k = 0;
hold on; % and keep it there while we plot
while 1
[xi, yi, but] = ginput(1); % get a point
if ~isequal(but, 1) % stop if not button 1
break
end
k = k + 1;
pts(1,k) = xi;
pts(2,k) = yi;
if xold
plot([xold xi], [yold yi], 'go-'); % draw as we go
else
plot(xi, yi, 'go'); % first point on its own
end
if isequal(k, n)
break
end
xold = xi;
yold = yi;
end
hold off;
if k < size(pts,2)
pts = pts(:, 1:k);
end
end
  댓글 수: 7
Kaveh Vejdani
Kaveh Vejdani 2019년 7월 31일
The question remained unanswered. xi and yi are only the coordinates. Where is the pixel value captured?
Mrutyunjaya Hiremath
Mrutyunjaya Hiremath 2020년 5월 17일
pixels = impixel(image, pts(1,:), pts(2,:));

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

Image Analyst
Image Analyst 2014년 2월 24일
If you don't need the value in your code but just want to interactive view the x,y and RGB as you mouse over the image, you can use impixelinfo().

Alberto Zafra Navarro
Alberto Zafra Navarro 2024년 2월 5일
편집: Alberto Zafra Navarro 2024년 2월 5일
According to ChatGPT is easier to do:
function pts = readPoints(image, n)
%readPoints Read manually-defined points from image
% POINTS = READPOINTS(IMAGE, N) reads up to N points only.
imshow(image); % display image
[x,y] = ginput(n);
pts = [x y];
end

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by