読み込んだ動画(480×720 unit8)をリアルタイムで出力したい。例)RGB=(35,120,55)
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
画像行列(480×720)のXが200番目、Yが300番目 のRGB=(,,_)という形でリアルタイム出力したい。 例RGB=(35,120,55)
close all;
clear all;
cam1=vcapg2;
pause(0.2);
for i=1:1000
cam1=vcapg2;%カメラから画像行列取得
image(cam1);%画像表示
pause(0.02);
end
0 Kommentare
Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!