前提・実現したいこと
python opencv 初心者です。
画像のガンマ補正をしたいです。
画像の各画素ごとに輝度値を読み取り、その輝度値を基にしてガンマ補正をかけることで、画像全体において輝度を一定とした画像を出力するプログラムを作りたいのですが、どのようにして画素ごとの輝度値を読み取ればいいのかがわからず困っています。
画像の輝度値は0~1.0の範囲で正規化します。
入力値(画像の輝度値)V、ガンマ補正を行い、結果V'とすると、V'=V^g
ぼかした画像の輝度値bに対して補正後の数値を0.5として、0.5=b^g
g=log0.5/logb
となるのですが、このbを画像から取得する方法が分かりません。
同じようなプログラムをC++で書かれたものを参考に作っていますが、C++はほとんど触ったことがなく、読むこともあまりできません。
参考プログラムも掲載しておきます。
ご教授いただけると幸いです。
宜しくお願い致します。
(前回の質問内容の続きですので、こちらを見ていただけると流れが分かりやすいか思います。宜しくお願い致します。
前回の質問)
該当のソースコード
python
1import cv2 2import matplotlib.pyplot as plt 3%matplotlib inline 4 5img = cv2.imread('resize_img09940.jpg',0) 6img_blur = cv2.GaussianBlur(img,(3,3),0) 7 8height = img_blur.shape[0] 9width = img_blur.shape[1] 10 11for x in range(height): 12 for y in range(width): 13 14
参考プログラム
C++
1cv::Mat Correction( const cv::Mat &Src, int KernelSizeFactor=6 ) 2{ 3 cv::Mat Blurred; 4 { 5 int s = ( std::min( Src.rows, Src.cols ) / KernelSizeFactor ) | 0x01; 6 cv::GaussianBlur( Src, Blurred, cv::Size(s,s), 0 ); 7 } 8 9 cv::Mat Result = cv::Mat( Src.rows, Src.cols, CV_8UC1 ); 10 for( int y=0; y<Src.rows; ++y ) 11 { 12 const unsigned char *pS = Src.ptr<unsigned char>(y); 13 const unsigned char *pB = Blurred.ptr<unsigned char>(y); 14 unsigned char *pR = Result.ptr<unsigned char>(y); 15 for( int x=0; x<Src.cols; ++x, ++pS,++pB,++pR ) 16 { 17 double b = std::max<unsigned char>( 1, *pB ) / 255.0; 18 double g = log(0.5) / log(b); 19 *pR = cvRound( 255.0 * pow(*pS / 255.0, g) ); 20 } 21 } 22 return Result;
回答1件
あなたの回答
tips
プレビュー