2011-06-24 05:55:24 +08:00
.. _Adding_Trackbars:
Adding a Trackbar to our applications!
***** ***** ***** ***** ***** ***** ***** *** *
* In the previous tutorials (about *linear blending* and the *brightness and contrast adjustments* ) you might have noted that we needed to give some **input** to our programs, such as :math: `\alpha` and :math: `beta` . We accomplished that by entering this data using the Terminal
2012-10-18 01:42:09 +08:00
* Well, it is time to use some fancy GUI tools. OpenCV provides some GUI utilities (*highgui.h* ) for you. An example of this is a **Trackbar**
2011-06-24 05:55:24 +08:00
2011-07-21 02:08:25 +08:00
.. image :: images/Adding_Trackbars_Tutorial_Trackbar.png
2011-06-24 05:55:24 +08:00
:alt: Trackbar example
2012-10-18 01:42:09 +08:00
:align: center
2011-06-24 05:55:24 +08:00
* In this tutorial we will just modify our two previous programs so that they get the input information from the trackbar.
Goals
======
In this tutorial you will learn how to:
2012-10-18 01:42:09 +08:00
* Add a Trackbar in an OpenCV window by using :create_trackbar:`createTrackbar <>`
2011-06-24 05:55:24 +08:00
Code
=====
Let's modify the program made in the tutorial :ref: `Adding_Images` . We will let the user enter the :math: `\alpha` value by using the Trackbar.
.. code-block :: cpp
2013-04-15 19:27:09 +08:00
#include <opencv2/opencv.hpp>
2011-06-24 05:55:24 +08:00
using namespace cv;
2012-10-18 01:42:09 +08:00
/// Global Variables
2011-06-24 05:55:24 +08:00
const int alpha_slider_max = 100;
2012-10-18 01:42:09 +08:00
int alpha_slider;
2011-06-24 05:55:24 +08:00
double alpha;
2012-10-18 01:42:09 +08:00
double beta;
2011-06-24 05:55:24 +08:00
2012-10-18 01:42:09 +08:00
/// Matrices to store images
2011-06-24 05:55:24 +08:00
Mat src1;
Mat src2;
Mat dst;
/**
* @function on_trackbar
* @brief Callback for trackbar
*/
void on_trackbar( int, void* )
2012-10-18 01:42:09 +08:00
{
2013-04-15 19:27:09 +08:00
alpha = (double) alpha_slider/alpha_slider_max ;
beta = ( 1.0 - alpha );
2011-06-24 05:55:24 +08:00
2013-04-15 19:27:09 +08:00
addWeighted( src1, alpha, src2, beta, 0.0, dst);
2012-10-18 01:42:09 +08:00
2013-04-15 19:27:09 +08:00
imshow( "Linear Blend", dst );
2011-06-24 05:55:24 +08:00
}
int main( int argc, char** argv )
{
2013-04-15 19:27:09 +08:00
/// Read image ( same size, same type )
src1 = imread("../../images/LinuxLogo.jpg");
src2 = imread("../../images/WindowsLogo.jpg");
2011-06-24 05:55:24 +08:00
2013-04-15 19:27:09 +08:00
if( !src1.data ) { printf("Error loading src1 \n"); return -1; }
if( !src2.data ) { printf("Error loading src2 \n"); return -1; }
2011-06-24 05:55:24 +08:00
2013-04-15 19:27:09 +08:00
/// Initialize values
alpha_slider = 0;
2011-06-24 05:55:24 +08:00
2013-04-15 19:27:09 +08:00
/// Create Windows
namedWindow("Linear Blend", 1);
2011-06-24 05:55:24 +08:00
2013-04-15 19:27:09 +08:00
/// Create Trackbars
char TrackbarName[50];
sprintf( TrackbarName, "Alpha x %d", alpha_slider_max );
2011-06-24 05:55:24 +08:00
2013-04-15 19:27:09 +08:00
createTrackbar( TrackbarName, "Linear Blend", &alpha_slider, alpha_slider_max, on_trackbar );
2011-06-24 05:55:24 +08:00
2013-04-15 19:27:09 +08:00
/// Show some stuff
on_trackbar( alpha_slider, 0 );
2012-10-18 01:42:09 +08:00
2013-04-15 19:27:09 +08:00
/// Wait until user press some key
waitKey(0);
return 0;
2011-06-24 05:55:24 +08:00
}
Explanation
============
We only analyze the code that is related to Trackbar:
#. First, we load 02 images, which are going to be blended.
.. code-block :: cpp
src1 = imread("../../images/LinuxLogo.jpg");
src2 = imread("../../images/WindowsLogo.jpg");
#. To create a trackbar, first we have to create the window in which it is going to be located. So:
.. code-block :: cpp
namedWindow("Linear Blend", 1);
#. Now we can create the Trackbar:
.. code-block :: cpp
createTrackbar( TrackbarName, "Linear Blend", &alpha_slider, alpha_slider_max, on_trackbar );
Note the following:
2012-10-18 01:42:09 +08:00
2011-06-24 05:55:24 +08:00
* Our Trackbar has a label **TrackbarName**
* The Trackbar is located in the window named **"Linear Blend"**
* The Trackbar values will be in the range from :math: `0` to **alpha_slider_max** (the minimum limit is always **zero** ).
* The numerical value of Trackbar is stored in **alpha_slider**
* Whenever the user moves the Trackbar, the callback function **on_trackbar** is called
#. Finally, we have to define the callback function **on_trackbar**
.. code-block :: cpp
void on_trackbar( int, void* )
2012-10-18 01:42:09 +08:00
{
2011-06-24 05:55:24 +08:00
alpha = (double) alpha_slider/alpha_slider_max ;
beta = ( 1.0 - alpha );
addWeighted( src1, alpha, src2, beta, 0.0, dst);
2012-10-18 01:42:09 +08:00
2011-06-24 05:55:24 +08:00
imshow( "Linear Blend", dst );
}
Note that:
2012-10-18 01:42:09 +08:00
* We use the value of **alpha_slider** (integer) to get a double value for **alpha** .
2011-06-24 05:55:24 +08:00
* **alpha_slider** is updated each time the trackbar is displaced by the user.
* We define *src1* , *src2* , *dist* , *alpha* , *alpha_slider* and *beta* as global variables, so they can be used everywhere.
2012-10-18 01:42:09 +08:00
2011-06-24 05:55:24 +08:00
Result
=======
* Our program produces the following output:
2011-07-20 06:08:54 +08:00
.. image :: images/Adding_Trackbars_Tutorial_Result_0.jpg
2011-06-24 05:55:24 +08:00
:alt: Adding Trackbars - Windows Linux
2012-10-18 01:42:09 +08:00
:align: center
2011-06-24 05:55:24 +08:00
* As a manner of practice, you can also add 02 trackbars for the program made in :ref: `Basic_Linear_Transform` . One trackbar to set :math: `\alpha` and another for :math: `\beta` . The output might look like:
2011-07-20 06:08:54 +08:00
.. image :: images/Adding_Trackbars_Tutorial_Result_1.jpg
2011-06-24 05:55:24 +08:00
:alt: Adding Trackbars - Lena
2012-10-18 01:42:09 +08:00
:align: center