mirror of
https://github.com/opencv/opencv.git
synced 2024-12-16 02:19:12 +08:00
bf06e3d09f
Documentation transition to fresh Doxygen #25042 * current Doxygen version is 1.10, but we will use 1.9.8 for now due to issue with snippets (https://github.com/doxygen/doxygen/pull/10584) * Doxyfile adapted to new version * MathJax updated to 3.x * `@relates` instructions removed temporarily due to issue in Doxygen (to avoid warnings) * refactored matx.hpp - extracted matx.inl.hpp * opencv_contrib - https://github.com/opencv/opencv_contrib/pull/3638
40 lines
1.0 KiB
C++
40 lines
1.0 KiB
C++
#include "opencv2/highgui.hpp"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
int value = 50;
|
|
int value2 = 0;
|
|
|
|
namedWindow("main1",WINDOW_NORMAL);
|
|
namedWindow("main2",WINDOW_AUTOSIZE | WINDOW_GUI_NORMAL);
|
|
createTrackbar( "track1", "main1", &value, 255, NULL);
|
|
|
|
String nameb1 = "button1";
|
|
String nameb2 = "button2";
|
|
|
|
createButton(nameb1,callbackButton,&nameb1,QT_CHECKBOX,1);
|
|
createButton(nameb2,callbackButton,NULL,QT_CHECKBOX,0);
|
|
createTrackbar( "track2", NULL, &value2, 255, NULL);
|
|
createButton("button5",callbackButton1,NULL,QT_RADIOBOX,0);
|
|
createButton("button6",callbackButton2,NULL,QT_RADIOBOX,1);
|
|
|
|
setMouseCallback( "main2",on_mouse,NULL );
|
|
|
|
Mat img1 = imread("files/flower.jpg");
|
|
VideoCapture video;
|
|
video.open("files/hockey.avi");
|
|
|
|
Mat img2,img3;
|
|
while( waitKey(33) != 27 )
|
|
{
|
|
img1.convertTo(img2,-1,1,value);
|
|
video >> img3;
|
|
|
|
imshow("main1",img2);
|
|
imshow("main2",img3);
|
|
}
|
|
|
|
destroyAllWindows();
|
|
return 0;
|
|
}
|