gpt4 book ai didi

c++ - 如何创建具有电视效果的图像?

转载 作者:太空宇宙 更新时间:2023-11-03 23:01:18 25 4
gpt4 key购买 nike

我需要处理具有电视效果的图像。这是样本处理图像的链接 http://www.codeproject.com/KB/graphics/RedMatterLibrary/village_waves_1.jpg

有人可以告诉我 openCV 库是否可以做到这一点吗?或者有任何其他库可以用于此目的吗?

最佳答案

当然。您可以操纵像素。所以你只需要自己写一个这样的过滤器。这是我想出的东西。也许您可以根据自己的喜好对其进行调整。

它拍摄一张图像,稍微降低颜色饱和度,然后根据垂直正弦函数增加蓝色部分。

#include <opencv2/opencv.hpp>
#include <highgui.h>
#include <cmath>

double wavelength = 40;
double intensity = 0.5;

double decolorisation = 0.7;

int main(int argc, char** argv)
{
cv::Mat img = imread(argv[1]);
cv::Mat outImg = img.clone();

for(int i=0; i<img.rows; i++)
for(int j=0; j<img.cols; j++)
{
// desaturate the image
double meanColor = (img.at<cv::Vec3b>(i,j)[0] + img.at<cv::Vec3b>(i,j)[1] + img.at<cv::Vec3b>(i,j)[3]) / 3.0;
cv::Vec3b newColor;
newColor[0] = (1-decolorisation)*img.at<cv::Vec3b>(i,j)[0] + decolorisation*meanColor;
newColor[1] = (1-decolorisation)*img.at<cv::Vec3b>(i,j)[1] + decolorisation*meanColor;
newColor[2] = (1-decolorisation)*img.at<cv::Vec3b>(i,j)[2] + decolorisation*meanColor;

// boost the blue channel
double coeff = 0.5 + sin((2*M_PI*i)/wavelength)/2.0;
newColor[0] = newColor[0] + intensity * coeff * (255-newColor[0]);

outImg.at<cv::Vec3b>(i,j) = newColor;
}

cv::imshow("Original",img);
cv::imshow("Televised",outImg);
waitKey(0);
}

关于c++ - 如何创建具有电视效果的图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17693548/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com