필터 지우기
필터 지우기

finding distance of objects in different frames

조회 수: 1 (최근 30일)
Marry M
Marry M 2015년 12월 9일
댓글: Marry M 2015년 12월 10일
Hello,
I have 10 frames and each frame with two objects in it, the centre of objects in each frame (binary image) calculated, please see the code:
for n=1:10 %n=number of frames
filename = strcat('C:\Users\A\Documents\MATLAB\frames\',srcFiles(n).name);
I= imread (filename);
bw=im2bw(I,.1);
.
.
centre=[centrex, centrey]; % x-y coordinates of centres of each object in bw
distance=sqrt((centrex2-centrex1)^2+(centrey2-centrey1)^2)
end
I want to find: if the ‘distance’ of two objects in a frame is 150 (for instance) do not calculate the ‘distance’ for other frames and save the ‘centre’, can you please help me. thank you

답변 (0개)

카테고리

Help CenterFile Exchange에서 Image Processing and Computer Vision에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by