Image Labeler automation algorithm

7 visualizaciones (últimos 30 días)
Kirill Karpov
Kirill Karpov el 24 de Abr. de 2019
Respondida: Birju Patel el 8 de Sept. de 2022
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 comentario
Miguel Capelo
Miguel Capelo el 25 de Ag. de 2020
Did you found out how to do it? I have the same doubt.

Iniciar sesión para comentar.

Respuestas (2)

darova
darova el 24 de Abr. de 2019
Use read():
v = VideoReader('vid.avi');
for i = 1:v.NumberOfFrames
I = read(v,i);
imshow(I)
pause(1)
end
  1 comentario
Kirill Karpov
Kirill Karpov el 24 de Abr. de 2019
If I'm not mistaken it will simply break the image into frames rather than automating the markup in image labeler

Iniciar sesión para comentar.


Birju Patel
Birju Patel el 8 de Sept. de 2022
You can create an automation algorithm for the Image Labeler app:
You can open an example using:
>> edit vision.labeler.VehicleDetectorACF

Categorías

Más información sobre Image and Video Ground Truth Labeling en Help Center y File Exchange.

Productos


Versión

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by