OpenCV-图像对比度

简介: OpenCV-图像对比度

实现原理

      图像对比度指的是一幅图像中明暗区域最亮的白和最暗的黑之间不同亮度层级的测量,即指一幅图像灰度反差的大小。差异范围越大代表对比越大,差异范围越小代表对比越小。设置一个基准值thresh,当percent大于0时,需要令图像中的颜色对比更强烈,即数值距离thresh越远,则变化越大;当percent等于1时,对比强到极致,只有255和0的区分;当percent等于0时,不变;当percent小于0时,对比下降,即令远离thresh的数值更近些;当percent等于-1时,没有对比了,全是thresh值。


      对比度调整算法的实现流程如下:  


      1.设置调整参数percent,取值为-100到100,类似PS中设置,归一化后为-1到1。


      2.针对图像所有像素点单个处理。当percent大于等于0时,对比增强,调整后的RGB三通道数值为:

      3.若percent小于0时,对比降低,此时调整后的图像RGB三通道值为:

      4.若percent等于1时,大于thresh则等于255,小于则等于0。

    至此,图像实现了明度的调整,算法逻辑参考xingyanxiao。C++实现代码如下。

功能函数代码

// 对比度
cv::Mat Contrast(cv::Mat src, int percent)
{
  float alpha = percent / 100.f;
  alpha = max(-1.f, min(1.f, alpha));
  cv::Mat temp = src.clone();
  int row = src.rows;
  int col = src.cols;
  int thresh = 127;
  for (int i = 0; i < row; ++i)
  {
    uchar *t = temp.ptr<uchar>(i);
    uchar *s = src.ptr<uchar>(i);
    for (int j = 0; j < col; ++j)
    {
      uchar b = s[3 * j];
      uchar g = s[3 * j + 1];
      uchar r = s[3 * j + 2];
      int newb, newg, newr;
      if (alpha == 1)
      {
        t[3 * j + 2] = r > thresh ? 255 : 0;
        t[3 * j + 1] = g > thresh ? 255 : 0;
        t[3 * j] = b > thresh ? 255 : 0;
        continue;
      }
      else if (alpha >= 0)
      {
        newr = static_cast<int>(thresh + (r - thresh) / (1 - alpha));
        newg = static_cast<int>(thresh + (g - thresh) / (1 - alpha));
        newb = static_cast<int>(thresh + (b - thresh) / (1 - alpha));
      }
      else {
        newr = static_cast<int>(thresh + (r - thresh) * (1 + alpha));
        newg = static_cast<int>(thresh + (g - thresh) * (1 + alpha));
        newb = static_cast<int>(thresh + (b - thresh) * (1 + alpha));
      }
      newr = max(0, min(255, newr));
      newg = max(0, min(255, newg));
      newb = max(0, min(255, newb));
      t[3 * j + 2] = static_cast<uchar>(newr);
      t[3 * j + 1] = static_cast<uchar>(newg);
      t[3 * j] = static_cast<uchar>(newb);
    }
  }
  return temp;
}

C++测试代码

#include <opencv2/opencv.hpp>
#include <iostream>
using namespace cv;
using namespace std;
cv::Mat Contrast(cv::Mat src, int percent);
int main()
{
  cv::Mat src = imread("5.jpg");
  cv::Mat result = Contrast(src, 50.f);
  imshow("original", src);
  imshow("result", result);
  waitKey(0);
  return 0;
}
// 对比度
cv::Mat Contrast(cv::Mat src, int percent)
{
  float alpha = percent / 100.f;
  alpha = max(-1.f, min(1.f, alpha));
  cv::Mat temp = src.clone();
  int row = src.rows;
  int col = src.cols;
  int thresh = 127;
  for (int i = 0; i < row; ++i)
  {
    uchar *t = temp.ptr<uchar>(i);
    uchar *s = src.ptr<uchar>(i);
    for (int j = 0; j < col; ++j)
    {
      uchar b = s[3 * j];
      uchar g = s[3 * j + 1];
      uchar r = s[3 * j + 2];
      int newb, newg, newr;
      if (alpha == 1)
      {
        t[3 * j + 2] = r > thresh ? 255 : 0;
        t[3 * j + 1] = g > thresh ? 255 : 0;
        t[3 * j] = b > thresh ? 255 : 0;
        continue;
      }
      else if (alpha >= 0)
      {
        newr = static_cast<int>(thresh + (r - thresh) / (1 - alpha));
        newg = static_cast<int>(thresh + (g - thresh) / (1 - alpha));
        newb = static_cast<int>(thresh + (b - thresh) / (1 - alpha));
      }
      else {
        newr = static_cast<int>(thresh + (r - thresh) * (1 + alpha));
        newg = static_cast<int>(thresh + (g - thresh) * (1 + alpha));
        newb = static_cast<int>(thresh + (b - thresh) * (1 + alpha));
      }
      newr = max(0, min(255, newr));
      newg = max(0, min(255, newg));
      newb = max(0, min(255, newb));
      t[3 * j + 2] = static_cast<uchar>(newr);
      t[3 * j + 1] = static_cast<uchar>(newg);
      t[3 * j] = static_cast<uchar>(newb);
    }
  }
  return temp;
}

测试效果

图1 原图

图2 参数为50的效果图

图3 参数为-50的效果图

      通过调整percent可以实现图像对比度的调整。

      如果函数有什么可以改进完善的地方,非常欢迎大家指出,一同进步何乐而不为呢~

      如果文章帮助到你了,可以点个赞让我知道,我会很快乐~加油!

相关文章
|
3月前
|
计算机视觉
Opencv学习笔记(三):图像二值化函数cv2.threshold函数详解
这篇文章详细介绍了OpenCV库中的图像二值化函数`cv2.threshold`,包括二值化的概念、常见的阈值类型、函数的参数说明以及通过代码实例展示了如何应用该函数进行图像二值化处理,并展示了运行结果。
656 0
Opencv学习笔记(三):图像二值化函数cv2.threshold函数详解
|
4月前
|
算法 计算机视觉
opencv图像形态学
图像形态学是一种基于数学形态学的图像处理技术,它主要用于分析和修改图像的形状和结构。
58 4
|
4月前
|
存储 计算机视觉
Opencv的基本操作(一)图像的读取显示存储及几何图形的绘制
本文介绍了使用OpenCV进行图像读取、显示和存储的基本操作,以及如何绘制直线、圆形、矩形和文本等几何图形的方法。
Opencv的基本操作(一)图像的读取显示存储及几何图形的绘制
|
5月前
|
算法 计算机视觉 Python
python利用opencv进行相机标定获取参数,并根据畸变参数修正图像附有全部代码(流畅无痛版)
该文章详细介绍了使用Python和OpenCV进行相机标定以获取畸变参数,并提供了修正图像畸变的全部代码,包括生成棋盘图、拍摄标定图像、标定过程和畸变矫正等步骤。
python利用opencv进行相机标定获取参数,并根据畸变参数修正图像附有全部代码(流畅无痛版)
WK
|
5月前
|
编解码 计算机视觉 Python
如何在OpenCV中进行图像转换
在OpenCV中,图像转换涉及颜色空间变换、大小调整及类型转换等操作。常用函数如`cvtColor`可实现BGR到RGB、灰度图或HSV的转换;`resize`则用于调整图像分辨率。此外,通过`astype`或`convertScaleAbs`可改变图像数据类型。对于复杂的几何变换,如仿射或透视变换,则可利用`warpAffine`和`warpPerspective`函数实现。这些技术为图像处理提供了强大的工具。
WK
143 1
|
7月前
|
算法 计算机视觉
【Qt&OpenCV 图像的感兴趣区域ROI】
【Qt&OpenCV 图像的感兴趣区域ROI】
233 1
|
7月前
|
运维 算法 计算机视觉
【Qt&OpenCV 图像的模板匹配 matchTemplate/minMaxLoc】
【Qt&OpenCV 图像的模板匹配 matchTemplate/minMaxLoc】
93 1
|
7月前
|
存储 编解码 算法
【Qt&OpenCV 检测图像中的线/圆/轮廓 HoughLinesP/HoughCircles/findContours&drawContours】
【Qt&OpenCV 检测图像中的线/圆/轮廓 HoughLinesP/HoughCircles/findContours&drawContours】
119 0
|
6月前
|
机器学习/深度学习 XML 计算机视觉
OpenCV(Open Source Computer Vision Library)是一个开源的计算机视觉和机器学习库,它提供了大量的函数和工具,用于处理图像和视频数据。
OpenCV(Open Source Computer Vision Library)是一个开源的计算机视觉和机器学习库,它提供了大量的函数和工具,用于处理图像和视频数据。
|
7月前
|
算法 计算机视觉
【Qt&OpenCV 图像边缘检测 Sobel/Laplace/Canny】
【Qt&OpenCV 图像边缘检测 Sobel/Laplace/Canny】
85 0