#include <gpu.hpp>
|
enum | Codec {
MPEG1 = 0,
MPEG2,
MPEG4,
VC1,
H264,
JPEG,
H264_SVC,
H264_MVC,
Uncompressed_YUV420 = (('I'<<24)|('Y'<<16)|('U'<<8)|('V')),
Uncompressed_YV12 = (('Y'<<24)|('V'<<16)|('1'<<8)|('2')),
Uncompressed_NV12 = (('N'<<24)|('V'<<16)|('1'<<8)|('2')),
Uncompressed_YUYV = (('Y'<<24)|('U'<<16)|('Y'<<8)|('V')),
Uncompressed_UYVY = (('U'<<24)|('Y'<<16)|('V'<<8)|('Y'))
} |
|
enum | ChromaFormat { Monochrome =0,
YUV420,
YUV422,
YUV444
} |
|
Enumerator |
---|
Monochrome |
|
YUV420 |
|
YUV422 |
|
YUV444 |
|
Enumerator |
---|
MPEG1 |
|
MPEG2 |
|
MPEG4 |
|
VC1 |
|
H264 |
|
JPEG |
|
H264_SVC |
|
H264_MVC |
|
Uncompressed_YUV420 |
|
Uncompressed_YV12 |
|
Uncompressed_NV12 |
|
Uncompressed_YUYV |
|
Uncompressed_UYVY |
|
cv::gpu::VideoReader_GPU::VideoReader_GPU |
( |
| ) |
|
cv::gpu::VideoReader_GPU::VideoReader_GPU |
( |
const std::string & |
filename | ) |
|
|
explicit |
cv::gpu::VideoReader_GPU::~VideoReader_GPU |
( |
| ) |
|
void cv::gpu::VideoReader_GPU::close |
( |
| ) |
|
void cv::gpu::VideoReader_GPU::dumpFormat |
( |
std::ostream & |
st | ) |
|
FormatInfo cv::gpu::VideoReader_GPU::format |
( |
| ) |
const |
bool cv::gpu::VideoReader_GPU::isOpened |
( |
| ) |
const |
void cv::gpu::VideoReader_GPU::open |
( |
const std::string & |
filename | ) |
|
bool cv::gpu::VideoReader_GPU::read |
( |
GpuMat & |
image | ) |
|
The documentation for this class was generated from the following file: