Open a video file.
n = aviopen(filename)
A string, the video filename to be read.
A number, the opened video file index.
aviopen open a video file, but it does not read frames from the file.
Please use im=avireadframe(n) to get a frame from the n'th opened video file.
Remember to close the opened file using aviclose(n) or avicloseall().
Video support for IPCV is only available when IPCV is compiled with OpenCV which support video I/O.
n = aviopen(fullpath(getIPCVpath() + "/images/video.avi")); im = avireadframe(n); //get a frame imshow(im); aviclose(n); | ![]() | ![]() |