码迷,mamicode.com
首页 > 其他好文 > 详细

opencv:通道的分离与合并

时间:2020-01-31 00:44:06      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:iostream   named   using   namespace   print   gre   show   int   bit   

#include <opencv2/opencv.hpp>
#include <iostream>

using namespace cv;
using namespace std;

int main(int argc, char** argv)
{
    Mat src = imread("f:/temp/images/lena.jpg");
    if (src.empty())
    {
        printf("Could not find the image!\n");
        return -1;
    }

    namedWindow("input", WINDOW_AUTOSIZE);
    imshow("input", src);

    vector<Mat> mv;
    // 通道分离
    split(src, mv);
    int size = mv.size();
    printf("number of channels: %d\n", size);
    imshow("blue channel", mv[0]);
    imshow("green channel", mv[1]);
    imshow("red channel", mv[2]);

    // 修改通道内容然后合并通道
    mv[2] = Scalar(0);
    // bitwise_not(mv[0], mv[0]);
    Mat dst;
    // 通道合并
    merge(mv, dst);
    imshow("merge dst", dst);

    waitKey(0);
    destroyAllWindows();
}

opencv:通道的分离与合并

标签:iostream   named   using   namespace   print   gre   show   int   bit   

原文地址:https://www.cnblogs.com/wbyixx/p/12244340.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!