OpenCV实现马赛克功能
本文实例为大家分享了OpenCV实现马赛克功能的具体代码,供大家参考,具体内容如下
实现用按下鼠标左键拖动时,在鼠标经过的路径上打上马赛克。
马赛克的原理是将图像中选中区域的像素用这个选中区域中的某一像素覆盖。
为了不让鼠标重复经过图像中同一个的时候,选取不一样的像素,该程序将在输入图片的时候,就实现了全图的马赛克效果。而当鼠标划过的时候,程序只是将实现马赛克的图片的指定位置复制到显示的图像中。
效果类似于QQ截图中的马赛克。
#include <opencv2\core\core.hpp> #include <opencv2\highgui\highgui.hpp> #include <opencv2\imgproc\imgproc.hpp> #include <iostream> using namespace cv; using namespace std; Mat inputImage; Mat inputImage_mosaic; Mat inputImage_clone; //马赛克的大小 int neightbourhood = 20; //记录鼠标的状态,0为鼠标左键未按下或弹起,1为鼠标左键按下 int mouseStatus = 0; void onMouse(int events, int x, int y, int flag, void* ustg); //创建马赛克图片 void createMosaicImage(Mat inputMat, Mat& outputMat, int size); //设置马赛克区域 void setMosaic(Mat& inputMat, Rect rect); int main(void){ inputImage = imread("test2.jpg"); inputImage_clone = inputImage.clone(); createMosaicImage(inputImage, inputImage_mosaic, neightbourhood); namedWindow("showImage", 0); setMouseCallback("showImage", onMouse); waitKey(); return 0; } void createMosaicImage(Mat inputMat, Mat& outputMat, int size){ RNG rng; int height = inputMat.rows; int width = inputMat.cols; Mat padding; Mat tempMat; //为了方便后面的计算,将输入的图像大小扩充到宽高都是size的倍数 copyMakeBorder(inputMat, padding, 0, size - inputMat.rows % size, 0, size - inputMat.cols % size, BORDER_REPLICATE); tempMat = padding.clone(); for (int row = 0; row < padding.rows; row += size){ for (int col = 0; col < padding.cols; col += size){ int rand_x = rng.uniform(0, size); int rand_y = rng.uniform(0, size); Rect rect = Rect(col, row, size, size); Mat roi = tempMat(rect); Scalar color = Scalar(padding.at<Vec3b>(row + rand_y, col + rand_x)[0], \ padding.at<Vec3b>(row + rand_y, col + rand_x)[1], \ padding.at<Vec3b>(row + rand_y, col + rand_x)[2]); roi.setTo(color); } } outputMat = tempMat(Rect(0, 0, width, height)).clone(); } void setMosaic(Mat& inputMat, Rect rect){ Mat roi = inputMat(rect); Mat tempRoi = inputImage_mosaic(rect); tempRoi.copyTo(roi); } void onMouse(int events, int x, int y, int flag, void* ustg){ //当鼠标移除图片区域的时候,不做操作 if (x < 0 || x > inputImage.cols || y < 0 || y > inputImage.rows){ return; } //马赛克块的位置信息 int x_left, x_right, y_top, y_bottom; x - neightbourhood <= 0 ? x_left = 0 : x_left = x - neightbourhood; x + neightbourhood > inputImage.cols ? x_right = inputImage.cols: x_right = x + neightbourhood; y - neightbourhood <= 0 ? y_top = 0 : y_top = y - neightbourhood; y + neightbourhood > inputImage.rows ? y_bottom = inputImage.rows: y_bottom = y + neightbourhood; if (events == CV_EVENT_LBUTTONDOWN){ mouseStatus = 1; setMosaic(inputImage_clone, Rect(x_left, y_top, x_right - x_left, y_bottom - y_top)); } else if (events == CV_EVENT_MOUSEMOVE){ if (mouseStatus == 1){ setMosaic(inputImage_clone, Rect(x_left, y_top, x_right - x_left, y_bottom - y_top)); } else{ //nothing } } else if (events == CV_EVENT_LBUTTONUP){ mouseStatus = 0; } else { //cout << "nothing" << endl; } imshow("showImage", inputImage_clone); }
效果图
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。
您可能感兴趣的文章
- 01-10数据结构课程设计-用栈实现表达式求值的方法详解
- 01-10使用OpenGL实现3D立体显示的程序代码
- 01-10求斐波那契(Fibonacci)数列通项的七种实现方法
- 01-10C语言 解决不用+、-、&#215;、&#247;数字运算符做加法
- 01-10使用C++实现全排列算法的方法详解
- 01-10用C++实现DBSCAN聚类算法
- 01-10深入全排列算法及其实现方法
- 01-10全排列算法的非递归实现与递归实现的方法(C++)
- 01-10用C语言实现单链表的各种操作(一)
- 01-10用C语言实现单链表的各种操作(二)
阅读排行
本栏相关
- 04-02c语言函数调用后清空内存 c语言调用
- 04-02func函数+在C语言 func函数在c语言中
- 04-02c语言的正则匹配函数 c语言正则表达
- 04-02c语言用函数写分段 用c语言表示分段
- 04-02c语言中对数函数的表达式 c语言中对
- 04-02c语言编写函数冒泡排序 c语言冒泡排
- 04-02c语言没有round函数 round c语言
- 04-02c语言分段函数怎么求 用c语言求分段
- 04-02C语言中怎么打出三角函数 c语言中怎
- 04-02c语言调用函数求fibo C语言调用函数求
随机阅读
- 01-10使用C语言求解扑克牌的顺子及n个骰子
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 01-10delphi制作wav文件的方法
- 08-05织梦dedecms什么时候用栏目交叉功能?
- 08-05dedecms(织梦)副栏目数量限制代码修改
- 01-10SublimeText编译C开发环境设置
- 04-02jquery与jsp,用jquery
- 01-11ajax实现页面的局部加载
- 01-10C#中split用法实例总结
- 08-05DEDE织梦data目录下的sessions文件夹有什