histogram stretching / equalization (히스토그램 스트레칭 / 평활화)
[출처] - OpenCV 4로 배우는 컴퓨터 비전과 머신 러닝 Original Image histogram stretching 영상의 히스토그램이 그레이스케일 전 구간에 걸쳐서 나타나도록 함 histogram equalization 픽셀 값 분포가 그레이스케일 전체 영역에서 골고루 나타나도록 함 (픽셀 값이 특정 값 근방에 뭉쳐있을 때, 이를 넓게 펼쳐줌) source code #include "opencv2/opencv.hpp" #include using namespace cv; using namespace std; Mat getGrayHistImage(const Mat& hist) { CV_Assert(hist.type() == CV_32FC1); CV_Assert(hist.size() == Size..
2021.08.15