| 59 | } |
| 60 | |
| 61 | std::string CvVideoFrameReader::GetSourceEncoding() const |
| 62 | { |
| 63 | char fourccStr[5]; |
| 64 | auto fourcc = (int)m_capture.get(cv::CAP_PROP_FOURCC); |
| 65 | sprintf(fourccStr,"%c%c%c%c",fourcc & 0xFF, (fourcc >> 8) & 0xFF, (fourcc >> 16) & 0xFF, (fourcc >> 24) & 0xFF); |
| 66 | return fourccStr; |
| 67 | } |
| 68 | |
| 69 | int CvVideoFrameReader::GetSourceEncodingInt() const |
| 70 | { |