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

图像处理(二)

时间:2018-03-11 02:43:36      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:pre   char*   color   har   open   min   col   dmi   nbsp   

opencv访问图像像素:

    Mat image = imread("C:\\Users\\Administrator\\Desktop\\image.jpg");
        ofstream out("log.txt");
        int rows = image.rows;
    int cols = image.cols;

    for (int i = 0; i < rows; i++)
    {
        uchar* data = (uchar*)image.data + i*image.step[0];
        for (int j = 0; j < cols; j++)
        {
            out << (int)data[j*3] << "," << (int)data[j*3+1] << "," << (int)data[3*j+2] << "  ";
        }
        cout << endl;
    }

 

图像处理(二)

标签:pre   char*   color   har   open   min   col   dmi   nbsp   

原文地址:https://www.cnblogs.com/2Bthebest1/p/8542796.html

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