温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

使用OpenCV怎么将彩色照片转换成素描卡通照片

发布时间:2021-02-22 17:55:57 来源:亿速云 阅读:151 作者:戴恩恩 栏目:编程语言

这篇文章主要为大家详细介绍了使用OpenCV怎么将彩色照片转换成素描卡通照片,文中示例代码介绍的非常详细,具有一定的参考价值,发现的小伙伴们可以参考一下:

具体内容如下

#include"stdafx.h"
//#include<cv.h>
//#include<highgui.h>
 
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/core/core.hpp>
using namespace cv;
using namespace std;
 
 
int main()
{
 Mat src,smallImg,tmp,bigImg,gray,edges,masks,dst; 
 const int MEDIAN_BLUR_FILTER_SIZE = 7; 
 const int LAPLACIAN_FILTER_SIZE = 5; 
 const int EDGES_THRESHOLD = 80; 
 int repetitions = 7; // Repetitions for strong cartoon effect. 
 
 src = imread("pic.jpg");
 
 Size size = src.size(); 
 Size smallSize; 
 smallSize.width = size.width/2; 
 smallSize.height = size.height/2; 
 smallImg = Mat(smallSize, CV_8UC3); 
 tmp = Mat(smallSize, CV_8UC3); 
 dst= Mat(size,CV_8UC3); 
 
 cvtColor(src,gray,CV_BGR2GRAY); 
 
 medianBlur(gray,gray,MEDIAN_BLUR_FILTER_SIZE); 
 
 Laplacian(gray, edges, CV_8U,LAPLACIAN_FILTER_SIZE); 
 
 threshold(edges, masks,EDGES_THRESHOLD,255, THRESH_BINARY_INV); 
 imshow("sketch:)", masks); 
 waitKey(10);
 
 resize(src, smallImg, smallSize, 0,0, INTER_LINEAR); 
 for (int i=0; i<repetitions; i++) 
 { 
 int ksize = 9; // Filter size. Has a large effect on speed. 
 double sigmaColor = 9; // Filter color strength. 
 double sigmaSpace = 7; // Spatial strength. Affects speed. 
 bilateralFilter(smallImg, tmp, ksize, sigmaColor, sigmaSpace); 
 bilateralFilter(tmp, smallImg, ksize, sigmaColor, sigmaSpace); 
 } 
 resize(smallImg, bigImg, size, 0,0, INTER_LINEAR); 
 bigImg.copyTo(dst,masks); 
 
 imshow("cartoon :)", dst); 
 waitKey(0);
 return 0;
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持亿速云。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI