欧美一区二区三区老妇人-欧美做爰猛烈大尺度电-99久久夜色精品国产亚洲a-亚洲福利视频一区二区

使用OpenCV怎么實現(xiàn)馬賽克和毛玻璃濾鏡特效-創(chuàng)新互聯(lián)

使用OpenCV怎么實現(xiàn)馬賽克和毛玻璃濾鏡特效?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

成都創(chuàng)新互聯(lián)公司-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設、高性價比中原網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式中原網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設找我們,業(yè)務覆蓋中原地區(qū)。費用合理售后完善,十多年實體公司更值得信賴。

一、馬賽克效果

馬賽克的實現(xiàn)原理是把圖像上某個像素點一定范圍鄰域內的所有點用鄰域內隨機選取的一個像素點的顏色代替,這樣可以模糊細節(jié),但是可以保留大體的輪廓。

以下OpenCV程序實現(xiàn)馬賽克效果,通過鼠標左鍵在圖像上劃定馬賽克的矩形框。

代碼:

#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;
 
//記錄鼠標的狀態(tài),0為鼠標左鍵未按下或彈起,1為鼠標左鍵按下
int mouseStatus = 0;
 
void onMouse(int events, int x, int y, int flag, void* ustg);
 
//創(chuàng)建馬賽克圖片
void createMosaicImage(Mat inputMat, Mat& outputMat, int size);
 
//設置馬賽克區(qū)域
void setMosaic(Mat& inputMat, Rect rect);
 
int mainFun(void) {
 inputImage = imread("D:\\test\\12.jpg");
 inputImage_clone = inputImage.clone();
 createMosaicImage(inputImage, inputImage_mosaic, neightbourhood);
 
 namedWindow("showImage", WINDOW_AUTOSIZE);
 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的倍數(shù)
 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) {
 
 //當鼠標移除圖片區(qū)域的時候,不做操作
 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);
}
 
 
//-----開始------
void COpenCVLearningDlg::OnBnClickedStartButton()
{
 mainFun();
}

效果:

使用OpenCV怎么實現(xiàn)馬賽克和毛玻璃濾鏡特效

二、毛玻璃效果

毛玻璃效果的實現(xiàn)通過用像素點鄰域內隨機一個像素點的顏色替代當前像素點的顏色實現(xiàn)。

代碼:

#include <core\core.hpp>
#include <highgui\highgui.hpp>
 
using namespace cv;
 
int mainFun()
{
 Mat imageSource = imread("D:\\test\\12.jpg");
 Mat imageResult = imageSource.clone();
 RNG rng;
 int randomNum;
 int Number = 5;
 
 for (int i = 0; i < imageSource.rows - Number; i++)
 for (int j = 0; j < imageSource.cols - Number; j++)
 {
  randomNum = rng.uniform(0, Number);
  imageResult.at<Vec3b>(i, j)[0] = imageSource.at<Vec3b>(i + randomNum, j + randomNum)[0];
  imageResult.at<Vec3b>(i, j)[1] = imageSource.at<Vec3b>(i + randomNum, j + randomNum)[1];
  imageResult.at<Vec3b>(i, j)[2] = imageSource.at<Vec3b>(i + randomNum, j + randomNum)[2];
 }
 imshow("毛玻璃效果", imageResult);
 waitKey();
 return 0;
}
 
 
//-----開始------
void COpenCVLearningDlg::OnBnClickedStartButton()
{
 mainFun();
}

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注創(chuàng)新互聯(lián)網(wǎng)站建設公司行業(yè)資訊頻道,感謝您對創(chuàng)新互聯(lián)建站的支持。

另外有需要云服務器可以了解下創(chuàng)新互聯(lián)建站www.chinadenli.net,海內外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、建站服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。

分享標題:使用OpenCV怎么實現(xiàn)馬賽克和毛玻璃濾鏡特效-創(chuàng)新互聯(lián)
本文地址:http://www.chinadenli.net/article32/psgpc.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供響應式網(wǎng)站外貿網(wǎng)站建設服務器托管品牌網(wǎng)站建設ChatGPT網(wǎng)站設計公司

廣告

聲明:本網(wǎng)站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)

外貿網(wǎng)站制作