diff options
author | shamikam | 2017-01-16 02:56:17 +0530 |
---|---|---|
committer | shamikam | 2017-01-16 02:56:17 +0530 |
commit | a6df67e8bcd5159cde27556f4f6a315f8dc2215f (patch) | |
tree | e806e966b06a53388fb300d89534354b222c2cad /macros/readframe.sci | |
download | FOSSEE_Image_Processing_Toolbox-a6df67e8bcd5159cde27556f4f6a315f8dc2215f.tar.gz FOSSEE_Image_Processing_Toolbox-a6df67e8bcd5159cde27556f4f6a315f8dc2215f.tar.bz2 FOSSEE_Image_Processing_Toolbox-a6df67e8bcd5159cde27556f4f6a315f8dc2215f.zip |
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; |