I just want to keep track of the object I selected.

3 次查看(过去 30 天)
*I just want to keep track of the object I selected.
frame = readFrame(obj.reader);
imshow(frame);
title('Takip etmek istediğiniz nesneyi seçin ve Enter\a basın');
rect = getrect; % Kullanıcının seçtiği dikdörtgenin koordinatlarını alır.
close; % Seçimden sonra pencereyi kapatır.
% Seçilen nesnenin sınır kutusunu global değişken olarak kaydedin.
selectedBbox = rect;
*I used the following code for this, but I do not get correct results in object tracking. I used Kalman Filter for this.
  3 个评论
Hasan
Hasan 2024-12-2
I did what you said and I follow all the objects and I get partially correct tracking, but as I said, the purpose of my project is to follow only the object I choose. What more can I do for this? I tried many methods but could not achieve results. Thank you.
Walter Roberson
Walter Roberson 2024-12-2
Once you have selected the initial object, then in subsequent frames, you can mask out the frame beyond a reasonable maximum movement velocity, before rescanning for objects. You can also deliberately discard the tracking information about objects that are more than maximum movement velocity away from the object of interest.

请先登录,再进行评论。

回答(1 个)

Image Analyst
Image Analyst 2024-12-3
The Computer Vision Toolbox has some tracking capabilities. Look them up.

类别

Help CenterFile Exchange 中查找有关 Matched Filter and Ambiguity Function 的更多信息

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by