登录
首页 » c++ » 数字图像处理增加亮点和对比度

数字图像处理增加亮点和对比度

于 2022-05-14 发布 文件大小:3.68 MB
0 126
下载积分: 2 下载次数: 1

代码说明:

#include#includeusing namespace cv;int main() {Mat src,dst;src = imread("D:/ps/circle.png");int rows = src.rows;int cols = src.cols;float alpht = 1.8;float bea = 50;dst = Mat::zeros(src.size(), src.type());for (int row = 0; row < rows; row++) {for (int col = 0; col < cols; col++) {int b = src.at(row, col)[0];int g = src.at(row, col)[1];int r = src.at(row, col)[2];dst.at(row, col)[0] = saturate_cast(alpht*b + bea);dst.at(row, col)[1] = saturate_cast(alpht*g + bea);dst.at(row, col)[2] = saturate_cast(alpht*r + bea);}}namedWindow("s", CV_WINDOW_AUTOSIZE);namedWindow("d", CV_WINDOW_AUTOSIZE);imshow("s", src);imshow("d", dst);waitKey(0);r

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • DB_GP22_cn
    TDC-GP22时间数字转换器临时数据手册(TDC-GP22 Time-digital converter temporary data sheet)
    2013-11-25 18:29:30下载
    积分:1
  • laba5_graphics
    qt, lab graphics c/c++
    2017-12-06 05:23:17下载
    积分:1
  • niudunMATLAB
    牛顿插值的matlab实现,程序简单易懂,而且易于交流(Newton interpolation matlab achieve, procedures simple and easy to exchange)
    2008-06-22 14:29:19下载
    积分:1
  • Geometric-transformation
    几何变换,包括图形的基本变化,以及计算机图形学中的算法(Geometric transformations, including changes in the basic graphics, and computer graphics algorithms)
    2011-10-23 09:28:43下载
    积分:1
  • labview程序 解析hex文件
    说明:  对于labview编程者来说,需要解析hex文件需要额外翻查许多资料,本程序为labview程序,用来解析hex文件(labview program anlysis hex file)
    2020-06-18 00:20:01下载
    积分:1
  • AdapterCtl
    说明:  在Windows应用程序中禁用网卡,光驱和USB存储设备(Application in Windows to disable the network card, CD-ROM and USB storage devices)
    2009-08-18 16:38:26下载
    积分:1
  • ElectromagneticField
    说明:  利用matlab实现已知电势分布情况下,周围电磁场的分布情况。(achieved using Matlab known potential distribution circumstances surrounding the distribution of the electromagnetic field.)
    2006-04-22 16:35:07下载
    积分:1
  • codeutnguageteacher
    c语言的源代码,教师信息管理,不错的源码(C language source code, the teacher information management, good source)
    2017-05-21 19:51:28下载
    积分:1
  • GpsDemo
    GPS数据收集测试工具,异步传输。用于手机GPS定位器上传的数据。该工具仅为测试工具.(GPS data collection and testing tools. Used for mobile phone GPS locator upload data. The tool is only for testing tools (agreement for the valley rice GT02 series))
    2020-10-19 21:27:25下载
    积分:1
  • glut实现三维模型的导入
    通过模型到处3ds,然后倒入到glut库里面作为计算机图形处理,丰富游戏环境的内容
    2022-05-15 21:50:56下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载