Accelerating the completion of video bypass (bug #1893)
This commit is contained in:
parent
3ec43a11ed
commit
57e26bde9f
@ -494,10 +494,13 @@ bool VideoCapture::retrieve(Mat& image, int channel)
|
|||||||
|
|
||||||
bool VideoCapture::read(Mat& image)
|
bool VideoCapture::read(Mat& image)
|
||||||
{
|
{
|
||||||
|
if (get(CV_CAP_PROP_POS_FRAMES) < get(CV_CAP_PROP_FRAME_COUNT))
|
||||||
if(!grab())
|
if(!grab())
|
||||||
image.release();
|
image.release();
|
||||||
else
|
else
|
||||||
retrieve(image);
|
retrieve(image);
|
||||||
|
else
|
||||||
|
image.release();
|
||||||
return !image.empty();
|
return !image.empty();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user