I just want to keep track of the object I selected.
36 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hasan
el 2 de Dic. de 2024 a las 8:33
Respondida: Image Analyst
el 3 de Dic. de 2024 a las 5:03
*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 comentarios
Walter Roberson
el 2 de Dic. de 2024 a las 23:23
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.
Respuestas (1)
Image Analyst
el 3 de Dic. de 2024 a las 5:03
The Computer Vision Toolbox has some tracking capabilities. Look them up.
0 comentarios
Ver también
Categorías
Más información sobre Matched Filter and Ambiguity Function en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!