现在有个工业相机,像素格式有如下这些可选,默认的是Mono16
我想把像素格式改为bayer然后通过opencv转换并显示,现在问题就是char* 数组中的数据怎么处理,我在网上找了类似的代码:
//将数据复制到opencv Mat结构中
cv::Mat mat16uc1_bsyer(m_height, m_width, CV_16UC1, m_imageBuffer);
//将Bayer数据解码为RGB,但每个通道使用16位
cv::Mat mat16uc3_rgb(m_width, m_height, CV_16UC3);
cv::cvtColor(mat16uc1_bsyer, mat16uc3_rgb, cv::COLOR_BayerGR2RGB);
//将每通道16位RGB图像转换为每通道8位
cv::Mat mat8uc3_rgb(m_width, m_height, CV_8UC3);
mat16uc3_rgb.convertTo(mat8uc3_rgb, CV_8UC3, 1.0 / 256);
调试后现实的是全黑的图像,请大佬讲解一下这段代码具体的含义
补充:
SDK中对像素数组的处理如下,但是显示出来的bmp图片是黑底加上很多白点,看不出拍摄对象的轮廓,而且在采集过程中不会有任何变化,请问这段处理的代码是否有问题?
for (int pixelIndex = 0; pixelIndex < size; pixelIndex++)
{
//convert two byte char into unsigned short
holder = ((m_imageBuffer[pixelIndex * 2 + 1] << 8) & 0xFF00) | (m_imageBuffer[pixelIndex * 2] & 0xFF);
//convert 16-bit integer into a 8 bit rgb value
pixelValue = (uint8_t)((255.0*((float)holder)) / 65535.0);
//create rgb values for grey
colorArr[pixelIndex] = RGB(pixelValue, pixelValue, pixelValue);
}
curFrame = CreateBitmap((unsigned int)m_width, (unsigned int)m_height, 1, 32, (void*)colorArr);