繁体   English   中英

OpenCV - 使用Alpha通道读取灰度或单色图像

[英]OpenCV - Read a gray scale or monochrome image with alpha channel

更新2018-10-13

此问题已在OpenCV 3.4中修复

import cv2
import numpy as np
image = cv2.imread('1.png', cv2.IMREAD_UNCHANGED)

image.shape
>> (480, 960, 4)

np.sum(img[:,:,:3])
>> 0

np.mean(img[:,:,3])
>> 37.929637586805555

有人问过类似的问题,但这里没有答案。

如何在带有Alpha通道的OpenCV中读取灰度图像? 例如,如果我尝试读取下面的图像,我得到的是全部为零的2d数组。

在此输入图像描述

image = cv2.imread('1.png', cv2.IMREAD_UNCHANGED)
image.shape

(480, 960)

在OpenCV版本3.4.2中,此错误已解决(可能在早期版本中,但在3.1.0中未修复)

如何检查:

#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <iostream>

using namespace std;

int main( int argc, char** argv )
{
    const char* imagePath = "grayscale_with_alpha.png";

    cout << "OpenCV version : " << CV_VERSION << endl;

    cv::Mat image;
    image = cv::imread(imagePath, cv::IMREAD_UNCHANGED);   // Read the file

    if(!image.data )                              // Check for invalid input
    {
        cout <<  "Could not open or find the image" << std::endl ;
        return -1;
    }

    vector<int> params;
    try 
    {
        cv::imwrite("grayscale_with_alpha_out.png", image, params);
    }
    catch (runtime_error& ex) {
        fprintf(stderr, "Exception converting image to PNG format: %s\n", ex.what());
        return 1;
    }


    return 0;
}

构建并运行:

> g++ -lopencv_core -lopencv_highgui -lopencv_imgcodecs -o main main.cpp
> ./main
> OpenCV version : 3.4.2

图像“grayscale_with_alpha_out.png”必须与输入图像相同。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM