What does step instruction in matlab do?
3 ビュー (過去 30 日間)
古いコメントを表示
videoFileReader = vision.VideoFileReader('h1.avi');
videoFrame = step(videoFileReader);
0 件のコメント
採用された回答
David Young
2016 年 1 月 26 日
It is documented: see this. Note that you have to look at the documentation for vision.videoFileReader in the Computer Vision System toolbox, and not the documentation for VideoReader.
Note also that there isn't a "step instruction" in MATLAB. step here is a method of the vision.videoFileReader class.
1 件のコメント
Walter Roberson
2016 年 1 月 26 日
So far, Mathworks has avoided using step() as the name of any toolbox routine. However, it is used as the name of a method in a number of different location, so you have to look at the object type of what you are calling step() on to determine what effect it has.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Computer Vision Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!