使用索引应用转换是令人困惑的。
我的建议是将 YV12 图像视为 3 个单独的图像。
- Y(宽 x 高)- 顶部图像。
- V(宽/2 x 高/2) - 低于 Y
- U(宽/2 x 高/2) - 低于 V
根据以下文档:
YV12 与 I420 完全相同,但 U 面和 V 面的顺序颠倒了。
I420 的订购方式如下:
OpenCV 支持BGR 到 I420的转换,并且与 YV12 相比,文档格式更多,因此我们最好从 I420 开始测试,然后继续使用 YV12(通过切换 U 和 V 通道)。
主要思想是用 cv:Mat 对象“包装” V 和 U 矩阵(data
通过向输入指针添加偏移量来设置矩阵data
指针)。
- inV 位于Y 之后(每个轴的分辨率为一半,步幅为一半):
cv::Mat inV = cv::Mat(cv::Size(width/2, height/2), CV_8UC1, (unsigned char*)input.data + stride*height, stride/2);
- inU位于 V 之后(每个轴的分辨率为一半,步幅为一半):
cv::Mat inU = cv::Mat(cv::Size(width/2, height/2), CV_8UC1, (unsigned char*)input.data + stride*height + (stride/2)*(height/2), stride/2);
这是转换函数:
void YV12toNV12(const cv::Mat& input, cv::Mat& output) {
int width = input.cols;
int height = input.rows * 2 / 3;
int stride = (int)input.step[0]; //Rows bytes stride - in most cases equal to width
input.copyTo(output);
//Y Channel
// YYYYYYYYYYYYYYYY
// YYYYYYYYYYYYYYYY
// YYYYYYYYYYYYYYYY
// YYYYYYYYYYYYYYYY
// YYYYYYYYYYYYYYYY
// YYYYYYYYYYYYYYYY
//V Input channel
// VVVVVVVV
// VVVVVVVV
// VVVVVVVV
cv::Mat inV = cv::Mat(cv::Size(width / 2, height / 2), CV_8UC1, (unsigned char*)input.data + stride * height, stride / 2); // Input V color channel (in YV12 V is above U).
//U Input channel
// UUUUUUUU
// UUUUUUUU
// UUUUUUUU
cv::Mat inU = cv::Mat(cv::Size(width / 2, height / 2), CV_8UC1, (unsigned char*)input.data + stride * height + (stride / 2)*(height / 2), stride / 2); //Input V color channel (in YV12 U is below V).
for (int row = 0; row < height / 2; row++) {
for (int col = 0; col < width / 2; col++) {
output.at<uchar>(height + row, 2 * col) = inU.at<uchar>(row, col);
output.at<uchar>(height + row, 2 * col + 1) = inV.at<uchar>(row, col);
}
}
}
实施和测试:
使用FFmpeg命令行工具创建 NV12 示例图像:
ffmpeg -y -f lavfi -i testsrc=size=192x108:rate=1:duration=1 -pix_fmt nv12 -f rawvideo test.nv12
ffmpeg -y -f rawvideo -pixel_format gray -video_size 192x162 -i test.nv12 -pix_fmt gray test_nv12.png
使用 MATLAB(或 OCTAVE)创建 YV12 示例图像:
NV12 = imread('test_nv12.png');
Y = NV12(1:108, :);
U = NV12(109:end, 1:2:end);
V = NV12(109:end, 2:2:end);
f = fopen('test.yv12', 'w');
fwrite(f, Y', 'uint8');
fwrite(f, V', 'uint8');
fwrite(f, U', 'uint8');
fclose(f);
f = fopen('test.yv12', 'r');
I = fread(f, [192, 108*1.5], '*uint8')';
fclose(f);
imwrite(I, 'test_yv12.png');
C++ 实现(I420toNV12 和 YV12toNV12):
#include "opencv2/opencv.hpp"
void YV12toNV12(const cv::Mat& input, cv::Mat& output) {
int width = input.cols;
int height = input.rows * 2 / 3;
int stride = (int)input.step[0]; //Rows bytes stride - in most cases equal to width
input.copyTo(output);
//Y Channel
// YYYYYYYYYYYYYYYY
// YYYYYYYYYYYYYYYY
// YYYYYYYYYYYYYYYY
// YYYYYYYYYYYYYYYY
// YYYYYYYYYYYYYYYY
// YYYYYYYYYYYYYYYY
//V Input channel
// VVVVVVVV
// VVVVVVVV
// VVVVVVVV
cv::Mat inV = cv::Mat(cv::Size(width / 2, height / 2), CV_8UC1, (unsigned char*)input.data + stride * height, stride / 2); // Input V color channel (in YV12 V is above U).
//U Input channel
// UUUUUUUU
// UUUUUUUU
// UUUUUUUU
cv::Mat inU = cv::Mat(cv::Size(width / 2, height / 2), CV_8UC1, (unsigned char*)input.data + stride * height + (stride / 2)*(height / 2), stride / 2); //Input V color channel (in YV12 U is below V).
for (int row = 0; row < height / 2; row++) {
for (int col = 0; col < width / 2; col++) {
output.at<uchar>(height + row, 2 * col) = inU.at<uchar>(row, col);
output.at<uchar>(height + row, 2 * col + 1) = inV.at<uchar>(row, col);
}
}
}
void I420toNV12(const cv::Mat& input, cv::Mat& output) {
int width = input.cols;
int height = input.rows * 2 / 3;
int stride = (int)input.step[0]; //Rows bytes stride - in most cases equal to width
input.copyTo(output);
//Y Channel
// YYYYYYYYYYYYYYYY
// YYYYYYYYYYYYYYYY
// YYYYYYYYYYYYYYYY
// YYYYYYYYYYYYYYYY
// YYYYYYYYYYYYYYYY
// YYYYYYYYYYYYYYYY
//U Input channel
// UUUUUUUU
// UUUUUUUU
// UUUUUUUU
cv::Mat inU = cv::Mat(cv::Size(width / 2, height / 2), CV_8UC1, (unsigned char*)input.data + stride * height, stride / 2); // Input U color channel (in I420 U is above V).
//V Input channel
// VVVVVVVV
// VVVVVVVV
// VVVVVVVV
cv::Mat inV = cv::Mat(cv::Size(width/2, height/2), CV_8UC1, (unsigned char*)input.data + stride*height + (stride/2)*(height/2), stride/2); //Input V color channel (in I420 V is below U).
for (int row = 0; row < height / 2; row++) {
for (int col = 0; col < width / 2; col++) {
output.at<uchar>(height + row, 2 * col) = inU.at<uchar>(row, col);
output.at<uchar>(height + row, 2 * col + 1) = inV.at<uchar>(row, col);
}
}
}
int main()
{
//cv::Mat input = cv::imread("test_I420.png", cv::IMREAD_GRAYSCALE);
//cv::Mat output;
//I420toNV12(input, output);
//cv::imwrite("output_NV12.png", output);
cv::Mat input = cv::imread("test_YV12.png", cv::IMREAD_GRAYSCALE);
cv::Mat output;
YV12toNV12(input, output);
cv::imwrite("output_NV12.png", output);
cv::imshow("input", input);
cv::imshow("output", output);
cv::waitKey(0);
cv::destroyAllWindows();
}
使用 MATLAB(或 OCTAVE)测试输出:
A = imread('test_nv12.png');
B = imread('output_NV12.png');
display(isequal(A, B))
输入(YV12为灰度图):
输入(NV12 为灰度图像):