「机器视觉」学习笔记 - Constructing And Building Histograms

Posted 抽象白龙王

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了「机器视觉」学习笔记 - Constructing And Building Histograms相关的知识,希望对你有一定的参考价值。

图像增强:

CLAHE Contrast Limited Adaptive Histogram Equalization

AHE adaptive histogram equalization

histogram equalization

  1. What is an image histogram?

  2. Calculate the histogram of a grayscale image using 64 bins.

  3. Add 50 to every pixel on a grayscale image (the result will look lighter) and calculate the histogram.

  4. Calculate the red channel histogram of a BGR image without a mask.

  5. What functions do OpenCV, NumPy, and Matplotlib provide for calculating histograms?

  6. Modify the grayscale_histogram.py script to compute the brightness of these three images (gray_image, added_image, and subtracted_image). Rename the script to grayscale_histogram_brightness.py.

  7. Modify the comparing_hist_equalization_clahe.py script to show the execution time of both cv2.equalizeHist() and CLAHE. Rename it to comparing_hist_equalization_clahe_time.py.

Mastering OpenCV 4 with Python

以上是关于「机器视觉」学习笔记 - Constructing And Building Histograms的主要内容,如果未能解决你的问题,请参考以下文章

《ROS理论与实践》学习笔记机器视觉处理

视觉机器学习读书笔记--------BP学习

视觉机器学习笔记------CNN学习

Halcon学习笔记——机器视觉应用工程开发思路及相机标定

视觉机器学习读书笔记--------SVM方法

机器视觉学习笔记最近邻插值实现图片任意角度旋转(C++)