Image Labeler automation algorithm

조회 수: 7 (최근 30일)
Kirill Karpov
Kirill Karpov 2019년 4월 24일
답변: Birju Patel 2022년 9월 8일
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
Miguel Capelo
Miguel Capelo 2020년 8월 25일
Did you found out how to do it? I have the same doubt.

댓글을 달려면 로그인하십시오.

답변 (2개)

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

댓글을 달려면 로그인하십시오.


Birju Patel
Birju Patel 2022년 9월 8일
You can create an automation algorithm for the Image Labeler app:
You can open an example using:
>> edit vision.labeler.VehicleDetectorACF

카테고리

Help CenterFile Exchange에서 Image and Video Ground Truth Labeling에 대해 자세히 알아보기

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by