Image Labeler automation algorithm
2 次查看(过去 30 天)
显示 更早的评论
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.
回答(2 个)
darova
2019-4-24
Use read():
v = VideoReader('vid.avi');
for i = 1:v.NumberOfFrames
I = read(v,i);
imshow(I)
pause(1)
end
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
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image and Video Ground Truth Labeling 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!