一、读取图像
QString appPath = QCoreApplication :: applicationDirPath ( ) ; QString imagePath = appPath + "/sun.png" ; cv:: Mat img = cv:: imread ( imagePath. toStdString ( ) ) ; if ( img. empty ( ) ) { qDebug ( ) << "Could not load image!\n" ; return ; } cv:: namedWindow ( "input" , cv:: WINDOW_AUTOSIZE) ; cv:: imshow ( "input" , img) ; cv:: waitKey ( 0 ) ; cv:: destroyAllWindows ( ) ;
二、保存图像
vector< int > opts; opts. push_back ( IMWRITE_PAM_FORMAT_RGB_ALPHA) ; imwrite ( "D:/img_bgra.png" , img, opts) ; img = cv:: imread ( imagePath. toStdString ( ) , IMREAD_GRAYSCALE) ; vector< int > opts_gray; opts_gray. push_back ( IMWRITE_PAM_FORMAT_GRAYSCALE) ; imwrite ( "D:/img_gray.png" , img, opts_gray) ; imwrite ( "D:/img_BGR.png" , img) ; img = imread ( imagePath. toStdString ( ) , IMREAD_ANYCOLOR) ; vector< int > opts_png_anycolor; opts_png_anycolor. push_back ( IMWRITE_PAM_FORMAT_GRAYSCALE) ; opts_png_anycolor. push_back ( 9 ) ; imwrite ( "D:/img_png_anycolor.png" , img, opts_png_anycolor) ; img = imread ( imagePath. toStdString ( ) , IMREAD_COLOR) ; vector< int > opts_jpeg; opts_jpeg. push_back ( IMWRITE_JPEG_QUALITY) ; opts_jpeg. push_back ( 50 ) ; opts_jpeg. push_back ( IMWRITE_JPEG_OPTIMIZE) ; opts_jpeg. push_back ( 1 ) ; imwrite ( "D:/img_jpeg.jpg" , img, opts_jpeg) ;
三、加载视频
QString appPath = QCoreApplication :: applicationDirPath ( ) ; QString videoPath = appPath + "/vtest.avi" ; cv:: VideoCapture capture; capture. open ( videoPath. toStdString ( ) , CAP_FFMPEG) ; cv:: Mat frame; while ( true ) { bool ret = capture. read ( frame) ; if ( ! ret) break ; imshow ( "frame" , frame) ; char c = waitKey ( 100 ) ; if ( c == 27 ) break ; } waitKey ( 0 ) ; destroyAllWindows ( ) ;
四、获取视频属性
QString appPath = QCoreApplication :: applicationDirPath ( ) ; QString videoPath = appPath + "/vtest.avi" ; cv:: VideoCapture capture; capture. open ( videoPath. toStdString ( ) , CAP_FFMPEG) ; qDebug ( ) << u8"高:" << capture. get ( CAP_PROP_FRAME_HEIGHT) ; qDebug ( ) << u8"宽:" << capture. get ( CAP_PROP_FRAME_WIDTH) ; qDebug ( ) << u8"帧率FPS:" << QString :: number ( capture. get ( CAP_PROP_FPS) ) ; qDebug ( ) << u8"总帧率:" << capture. get ( CAP_PROP_FRAME_COUNT) ;
五、保存视频
QString appPath = QCoreApplication :: applicationDirPath ( ) ; QString videoPath = appPath + "/vtest.avi" ; cv:: VideoCapture capture; capture. open ( videoPath. toStdString ( ) , CAP_FFMPEG) ; qDebug ( ) << u8"高:" << capture. get ( CAP_PROP_FRAME_HEIGHT) ; qDebug ( ) << u8"宽:" << capture. get ( CAP_PROP_FRAME_WIDTH) ; qDebug ( ) << u8"帧率FPS:" << capture. get ( CAP_PROP_FPS) ; qDebug ( ) << u8"总帧率:" << capture. get ( CAP_PROP_FRAME_COUNT) ; QString savevideoPath = appPath + "/output.avi" ; cv:: VideoWriter writer ( savevideoPath. toStdString ( ) , capture. get ( CAP_PROP_FOURCC) , capture. get ( CAP_PROP_FPS) , Size ( capture. get ( CAP_PROP_FRAME_WIDTH) , capture. get ( CAP_PROP_FRAME_HEIGHT) ) ) ; cv:: Mat frame; while ( true ) { bool ret = capture. read ( frame) ; if ( ! ret) break ; imshow ( "frame" , frame) ; writer. write ( frame) ; char c = waitKey ( 100 ) ; if ( c == 27 ) break ; } capture. release ( ) ; writer. release ( ) ; waitKey ( 0 ) ; destroyAllWindows ( ) ;
六、Mat遍历
数组下标
for ( int row = 0 ; row < h; row++ ) { for ( int col = 0 ; col < w; col++ ) { if ( dim == 1 ) { int pv = image. at < uchar> ( row, col) ; image. at < uchar> ( row, col) = 255 - pv; } if ( dim == 3 ) { Vec3b bgr = image. at < Vec3b> ( row, col) ; image. at < Vec3b> ( row, col) [ 0 ] = 255 - bgr[ 0 ] ; image. at < Vec3b> ( row, col) [ 1 ] = 255 - bgr[ 1 ] ; image. at < Vec3b> ( row, col) [ 2 ] = 255 - bgr[ 2 ] ; } } }
指针
for ( int row = 0 ; row < h; row++ )
{ uchar* current_row = image. ptr < uchar> ( row) ; for ( int col = 0 ; col < w; col++ ) { if ( dim == 1 ) { int pv = * current_row; * current_row++ = 255 - * current_row; } if ( dim == 3 ) { * current_row++ = 255 - * current_row; * current_row++ = 255 - * current_row; * current_row++ = 255 - * current_row; } }
}
七、Mat加减乘除
# include <opencv2/opencv.hpp> using namespace cv; int main ( ) { Mat image = imread ( "image.jpg" ) ; if ( image. empty ( ) ) { std:: cout << "无法加载图像" << std:: endl; return - 1 ; } Mat addResult; add ( image, Scalar ( 50 , 50 , 50 ) , addResult) ; Mat subtractResult; subtract ( image, Scalar ( 50 , 50 , 50 ) , subtractResult) ; Mat multiplyResult; multiply ( image, Scalar ( 0.5 , 0.5 , 0.5 ) , multiplyResult) ; Mat divideResult; divide ( image, Scalar ( 2.0 , 2.0 , 2.0 ) , divideResult) ; imshow ( "Original Image" , image) ; imshow ( "Addition Result" , addResult) ; imshow ( "Subtraction Result" , subtractResult) ; imshow ( "Multiplication Result" , multiplyResult) ; imshow ( "Division Result" , divideResult) ; waitKey ( 0 ) ; return 0 ;
}
七、亮度调节demo
Mat src, dst, m;
int lightness = 50 ; static void on_track ( int , v