写一个 480*640 的 RGB888 纯数据文件转BGR888纯数据文件的脚本
时间: 2023-03-10 10:51:25 浏览: 178
RGB2Lab_rgb转lab色彩通道matlab算法_
5星 · 资源好评率100%
可以使用以下脚本将480*640的RGB888纯数据转换为BGR888纯数据:for (int i = 0; i < 480; i++)
{
for (int j = 0; j < 640; j++)
{
int index = i * 640 * 3 + j * 3;
int b = data[index];
int g = data[index + 1];
int r = data[index + 2];
data[index] = r;
data[index + 1] = g;
data[index + 2] = b;
}
}
阅读全文