What does step instruction in matlab do?
조회 수: 4 (최근 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!