diff options
Diffstat (limited to 'macros/readframe.sci')
-rw-r--r-- | macros/readframe.sci | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/macros/readframe.sci b/macros/readframe.sci new file mode 100644 index 0000000..747c4de --- /dev/null +++ b/macros/readframe.sci @@ -0,0 +1,23 @@ +function [out]=readFrame(input) +// This function is used to return the next frame pointed to by the CurrentTime Property of A VideoReader Struct. +// +// Calling Sequence +// results = readFrame(); +// +// Parameters +// results: Frame of video. +// +// Description +// This function checks whether there is a next frame to grab in the video read through VideoReader and returns the frame. +// +// Examples +// videoStr = VideoReader('sample.mp4'); +// if(hasFrame()) then +// frame = readFrame() +// end +// +// Authors +// Shashank Shekhar +// Tanmay Chaudhari + out=ocv_readFrame(); +endfunction; |