91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用OpenCV怎么將彩色照片轉換成素描卡通照片

發布時間:2021-02-22 17:55:57 來源:億速云 閱讀:161 作者:戴恩恩 欄目:編程語言

這篇文章主要為大家詳細介紹了使用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

长阳| 钟山县| 呼玛县| 和田县| 衢州市| 昌乐县| 射洪县| 西贡区| 安康市| 沅陵县| 新晃| 洛南县| 安达市| 南郑县| 清原| 龙州县| 西林县| 搜索| 怀来县| 临澧县| 阜新市| 蓬安县| 盈江县| 固安县| 廊坊市| 白沙| 丽水市| 婺源县| 博湖县| 黎川县| 怀化市| 杭州市| 苗栗县| 儋州市| 平陆县| 渭南市| 广东省| 桐乡市| 长顺县| 鸡泽县| 陆丰市|