Image Labeler automation algorithm

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 日

0 投票

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 日

0 投票

You can create an automation algorithm for the Image Labeler app:
You can open an example using:
>> edit vision.labeler.VehicleDetectorACF

カテゴリ

製品

リリース

R2018b

質問済み:

2019 年 4 月 24 日

回答済み:

2022 年 9 月 8 日

Community Treasure Hunt

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

Start Hunting!

Translated by