How measure distance from center of the image to the object

조회 수: 3 (최근 30일)
Malik Malik
Malik Malik 2019년 5월 22일
편집: Malik Malik 2019년 5월 22일
Hi,
I have an image in which i want to measure the distance in pixels from the center of the image to the object as shown in the attached image. any suggestions how to do that? The object will move and get closer to the center of the image so my intenstion is to keep track of that distance. i think if i would be able to measuer the distance from this image i could extend that to rest.
Looking forward to your kind suggestions
Regards
Malik

채택된 답변

KSSV
KSSV 2019년 5월 22일
YOu can measure the distance from center of the object to center of the image as below:
I = imread('object_with problem.png');
% Center of image
[nx,ny,nz] = size(I) ;
[X,Y] = meshgrid(1:ny,1:nx) ;
O = [mean(X(:)) mean(Y(:))] ;
%%
I1 = rgb2gray(I) ;
[y,x] = find(I1) ;
A = [mean(x) mean(y)] ;
%% distance
d = sqrt((O(1)-A(1))^2+(O(2)-A(2))^2) ;
  댓글 수: 1
Malik Malik
Malik Malik 2019년 5월 22일
편집: Malik Malik 2019년 5월 22일
Thank you KSSV!
After your suggestion realized that i am already measuring the object length, and i could use the end point of the object and subtract it from the center of the image to get the distance.
Best Regards
Malik

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

추가 답변 (0개)

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by