Quantcast
Channel: OpenCV Q&A Forum - RSS feed
Viewing all articles
Browse latest Browse all 41027

Why does namedwindow("Original Image",CV_WINDOW_AUTOSIZE) show a debug error on running exe whilenamedwindow("Original Image",1) doesn't?

$
0
0
double alpha; /**< Simple contrast control */ int beta; /**< Simple brightness control */ int main( int argc, char** argv ) { Mat image = imread( argv[1] ); Mat new_image = Mat::zeros( image.size(), image.type() ); cout<<"* Enter the alpha value [1.0-3.0]: ";cin>>alpha; cout<<"* Enter the beta value [0-100]: ";cin>>beta; /// Do the operation new_image(i,j) = alpha*image(i,j) + beta for( int y = 0; y < image.rows; y++ ) { for( int x = 0; x < image.cols; x++ ) { for( int c = 0; c < 3; c++ ) { new_image.at(y,x)[c] =saturate_cast( alpha*( image.at(y,x)[c] ) + beta ); } } } namedWindow("Original Image", 1); namedWindow("New Image", 1); imshow("Original Image", image); imshow("New Image", new_image); waitKey(); return 0; }

Viewing all articles
Browse latest Browse all 41027

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>