You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** @brief Grabs, decodes and returns the next video frame and frame luma histogram.
393
391
@@ -401,7 +399,7 @@ class CV_EXPORTS_W VideoReader
401
399
402
400
@note Histogram data is collected by NVDEC during the decoding process resulting in zero performance penalty. NVDEC computes the histogram data for only the luma component of decoded output, not on post-processed frame(i.e. when scaling, cropping, etc. applied). If the source is encoded using a limited range of luma values (FormatInfo::videoFullRangeFlag == false) then the histogram bin values will correspond to to this limited range of values and will need to be mapped to contain the same output as cuda::calcHist(). The MapHist() utility function can be used to perform this mapping on the host if required.
/** @brief Returns information about video file format.
407
405
*/
@@ -418,7 +416,7 @@ class CV_EXPORTS_W VideoReader
418
416
The primary use of the function is for reading both the encoded and decoded video data when rawMode is enabled. With rawMode enabled
419
417
retrieve() can be called following grab() to retrieve all the data associated with the current video source since the last call to grab() or the creation of the VideoReader.
0 commit comments