Image Labeler automation algorithm
Mostra commenti meno recenti
Hi everyone,
I used image labeler to mark up 20 images. I have 1500 more frames from the same video. Now I need to automate the markup process so that I can only correct errors and teach further. I would be grateful if you could give me an example of the code implementing this.
1 Commento
Miguel Capelo
il 25 Ago 2020
Did you found out how to do it? I have the same doubt.
Risposte (2)
darova
il 24 Apr 2019
Use read():
v = VideoReader('vid.avi');
for i = 1:v.NumberOfFrames
I = read(v,i);
imshow(I)
pause(1)
end
1 Commento
Kirill Karpov
il 24 Apr 2019
Birju Patel
il 8 Set 2022
0 voti
You can create an automation algorithm for the Image Labeler app:
You can open an example using:
>> edit vision.labeler.VehicleDetectorACF
Categorie
Scopri di più su Image and Video Ground Truth Labeling in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!