IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 人工智能 -> EMGU.CV入门(十六、图像直方图) -> 正文阅读

[人工智能]EMGU.CV入门(十六、图像直方图)

一、图像直方图

1.1 计算直方图

        //
        // 摘要:
        //     Calculates a histogram of a set of arrays.
        //
        // 参数:
        //   images:
        //     Source arrays. They all should have the same depth, CV_8U or CV_32F , and the
        //     same size. Each of them can have an arbitrary number of channels.
        //
        //   channels:
        //     List of the channels used to compute the histogram.
        //
        //   mask:
        //     Optional mask. If the matrix is not empty, it must be an 8-bit array of the same
        //     size as images[i] . The non-zero mask elements mark the array elements counted
        //     in the histogram.
        //
        //   hist:
        //     Output histogram
        //
        //   histSize:
        //     Array of histogram sizes in each dimension.
        //
        //   ranges:
        //     Array of the dims arrays of the histogram bin boundaries in each dimension.
        //
        //   accumulate:
        //     Accumulation flag. If it is set, the histogram is not cleared in the beginning
        //     when it is allocated. This feature enables you to compute a single histogram
        //     from several sets of arrays, or to update the histogram in time.
        public static void CalcHist(IInputArrayOfArrays images, int[] channels, IInputArray mask, IOutputArray hist, int[] histSize, float[] ranges, bool accumulate)

1.2 直方图均衡

用来提高图像的对比度

        //
        // 摘要:
        //     The algorithm normalizes brightness and increases contrast of the image
        //
        // 参数:
        //   src:
        //     The input 8-bit single-channel image
        //
        //   dst:
        //     The output image of the same size and the same data type as src
        public static void EqualizeHist(IInputArray src, IOutputArray dst)

1.3 自适应均衡

        //
        // 摘要:
        //     Contrast Limited Adaptive Histogram Equalization (CLAHE)
        //
        // 参数:
        //   src:
        //     The source image
        //
        //   clipLimit:
        //     Clip Limit, use 40 for default
        //
        //   tileGridSize:
        //     Tile grid size, use (8, 8) for default
        //
        //   dst:
        //     The destination image
        public static void CLAHE(IInputArray src, double clipLimit, Size tileGridSize, IOutputArray dst)

1.4 比较直方图

比较两个图像的相似程度

        //
        // 摘要:
        //     Compares two histograms.
        //
        // 参数:
        //   h1:
        //     First compared histogram.
        //
        //   h2:
        //     Second compared histogram of the same size as H1 .
        //
        //   method:
        //     Comparison method
        //
        // 返回结果:
        //     The distance between the histogram
        public static double CompareHist(IInputArray h1, IInputArray h2, HistogramCompMethod method)

1.5 直方图反投影

应用于图像分割

        //
        // 摘要:
        //     Calculates the back projection of a histogram.
        //
        // 参数:
        //   images:
        //     Source arrays. They all should have the same depth, CV_8U or CV_32F , and the
        //     same size. Each of them can have an arbitrary number of channels.
        //
        //   channels:
        //     Number of source images.
        //
        //   hist:
        //     Input histogram that can be dense or sparse.
        //
        //   backProject:
        //     Destination back projection array that is a single-channel array of the same
        //     size and depth as images[0] .
        //
        //   ranges:
        //     Array of arrays of the histogram bin boundaries in each dimension.
        //
        //   scale:
        //     Optional scale factor for the output back projection.
        public static void CalcBackProject(IInputArrayOfArrays images, int[] channels, IInputArray hist, IOutputArray backProject, float[] ranges, double scale = 1.0

二、代码与效果

2.1 效果

在这里插入图片描述

2.2 代码

 //  1.加载原图
var image1 = new Image<Bgr, byte>("bird1.png");
var image0 = image1.Mat.Clone();
PreviewImage1 = new WriteableBitmap(Bitmap2BitmapImage(Text(image1.Bitmap, "原图")));

// 2. 原图转灰度
var imgGray = new Mat();
CvInvoke.CvtColor(image0, imgGray, ColorConversion.Bgr2Gray);
PreviewImage2 = new WriteableBitmap(Bitmap2BitmapImage(Text(imgGray.Bitmap, "灰度")));

// 3. 计算直方图
var hist = new Mat();
int[] channels = new int[] { 0 };  //初始化数组
float[] ranges = new float[] { 0, 255 };
int[] histSize = new int[] { 256 };
VectorOfMat vMatImgs = new VectorOfMat();
vMatImgs.Push(imgGray);
CvInvoke.CalcHist(vMatImgs, channels, new Mat(),hist, histSize, ranges, false);
var m = new Matrix<float>(256, 1);
hist.CopyTo(m);
// 3.1 简单的做个显示
Point[] points = new Point[256];
for (int i=0; i< m.Rows; i++) {
    points[i] = new Point(i*10, imgGray.Height * 3-(int)m[i, 0]);
}
var img = new Image<Gray,byte>(255*10, imgGray.Height*3,new Gray(255));
CvInvoke.Polylines(img, points, true,new MCvScalar(0,0,0),10);
PreviewImage3 = new WriteableBitmap(Bitmap2BitmapImage(Text(img.Bitmap, "直方图")));

// 4. 直方图均衡化
var img4 = new Mat();
CvInvoke.EqualizeHist(imgGray, img4);
PreviewImage4 = new WriteableBitmap(Bitmap2BitmapImage(Text(img4.Bitmap, "均衡")));

// 5. 自适应均衡
var img5= new Mat();
CvInvoke.CLAHE(imgGray,2.0,new Size(8,8),img5);
PreviewImage5 = new WriteableBitmap(Bitmap2BitmapImage(Text(img5.Bitmap, "自适应均衡")));

// 6. 彩色图
var img6 = image1.Split();
var imgB = new Image<Gray, byte>(image1.Size);
var imgG = new Image<Gray, byte>(image1.Size);
var imgR = new Image<Gray, byte>(image1.Size);
CvInvoke.EqualizeHist(img6[0], imgB);
CvInvoke.EqualizeHist(img6[1], imgG);
CvInvoke.EqualizeHist(img6[2], imgR);
var imgC = new Image<Bgr, byte>(new Image<Gray, byte>[] { imgB, imgG, imgR }) ;
PreviewImage6 = new WriteableBitmap(Bitmap2BitmapImage(Text(imgC.Bitmap, "均衡")));

// 7. 彩色图自适应均衡
CvInvoke.CLAHE(img6[0], 2.0, new Size(8, 8), imgB);
CvInvoke.CLAHE(img6[1], 2.0, new Size(8, 8), imgG);
CvInvoke.CLAHE(img6[2], 2.0, new Size(8, 8), imgR);
var imgD = new Image<Bgr, byte>(new Image<Gray, byte>[] { imgB, imgG, imgR });
PreviewImage7 = new WriteableBitmap(Bitmap2BitmapImage(Text(imgD.Bitmap, "自适应均衡")));

  人工智能 最新文章
2022吴恩达机器学习课程——第二课(神经网
第十五章 规则学习
FixMatch: Simplifying Semi-Supervised Le
数据挖掘Java——Kmeans算法的实现
大脑皮层的分割方法
【翻译】GPT-3是如何工作的
论文笔记:TEACHTEXT: CrossModal Generaliz
python从零学(六)
详解Python 3.x 导入(import)
【答读者问27】backtrader不支持最新版本的
上一篇文章      下一篇文章      查看所有文章
加:2021-12-06 15:15:13  更:2021-12-06 15:16:33 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/27 2:37:39-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码