Video Writer for cycle detection

1 回表示 (過去 30 日間)
Amir Azadeh Ranjbar
Amir Azadeh Ranjbar 2022 年 8 月 12 日
clc;clear all;close all
v = VideoWriter('cycles1','MPEG-4');
open(v);
Web=webcam;
k=1;
while k<200
frame=Web.snapshot;
[centers,radii] = imfindcircles(rgb2gray(frame),...
[8,30],"ObjectPolarity","dark",...
"Sensitivity",0.8,...
"Method","TwoStage");
imshow(frame)
h = viscircles(centers,radii,"Color",[0.2 0.3 0.5]);
writeVideo(v,frame);
k=k+1;
end
close(v)
clear Web
% I Wanr Write Video With Cycle that detected
  1 件のコメント
Benjamin Thompson
Benjamin Thompson 2022 年 8 月 12 日
Do you mean cycle detection or circle detection?
Is there an error or some problem with your sample code that you can post here?

サインインしてコメントする。

採用された回答

Benjamin Thompson
Benjamin Thompson 2022 年 8 月 12 日
You can use frame2im(getframe(gcf)) to get an image that has the result of imshow and viscircles together.
  1 件のコメント
Amir Azadeh Ranjbar
Amir Azadeh Ranjbar 2022 年 8 月 13 日
Its Work Perfect
Thanks Benjamin Thompson

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAudio and Video Data についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by