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

OpenCV 计算机视觉(二)掩膜操作

时间:2019-07-05 20:49:20      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:load   stream   jpg   div   fse   math   har   name   tick   

#include <opencv2/opencv.hpp>
#include <iostream>
#include <math.h>
using namespace cv;
int main(int argc, char** argv) {
 Mat src, dst;
 src = imread("D:/OpenCVtest/image/hao.jpg");
 if (!src.data) {
    printf("could not load image...\n");
    return -1;
 }
 namedWindow("input image", CV_WINDOW_AUTOSIZE);
 imshow("input image", src);
 /*
 int cols = (src.cols-1) * src.channels();
 int offsetx = src.channels();
 int rows = src.rows;
 dst = Mat::zeros(src.size(), src.type());
 for (int row = 1; row < (rows - 1); row++) {
    const uchar* previous = src.ptr<uchar>(row - 1);
    const uchar* current = src.ptr<uchar>(row);
    const uchar* next = src.ptr<uchar>(row + 1);
    uchar* output = dst.ptr<uchar>(row);
    for (int col = offsetx; col < cols; col++) {
     output[col] = saturate_cast<uchar>(5 * current[col] - (current[col- offsetx] + current[col+ offsetx] + previous[col] + next[col]));
    }
  }
 */
 double t = getTickCount();
 Mat kernel = (Mat_<char>(3, 3) << 0, -1, 0, -1, 5, -1, 0, -1, 0);
 filter2D(src, dst, src.depth(), kernel);
 double timeconsume = (getTickCount() - t) / getTickFrequency();
 printf("tim consume %.2f\n", timeconsume);
 namedWindow("contrast image demo", CV_WINDOW_AUTOSIZE);
 imshow("contrast image demo", dst);
 waitKey(0);
 return 0;
}
 
原理:
技术图片

 

OpenCV 计算机视觉(二)掩膜操作

标签:load   stream   jpg   div   fse   math   har   name   tick   

原文地址:https://www.cnblogs.com/haiboxiaobai/p/11140492.html

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