opencv色彩空间转换RGB转GBR用c语言
时间: 2024-01-01 22:04:25 浏览: 78
opencv-python的RGB与BGR互转方式
以下是将RGB色彩空间转换为GBR色彩空间的C语言代码:
```c
#include <opencv2/opencv.hpp>
#include <iostream>
using namespace cv;
using namespace std;
int main()
{
// 读取图片
Mat img = imread("test.png");
// 转换为GBR色彩空间
cvtColor(img, img, COLOR_RGB2GBR);
// 显示图片
imshow("GBR Image", img);
waitKey(0);
return 0;
}
```
在以上代码中,我们使用了OpenCV库中的cvtColor()函数来进行色彩空间转换,将RGB色彩空间转换为GBR色彩空间。转换后的图片存储在img变量中,我们可以使用imshow()函数来显示它。
阅读全文