HomeSort by relevance Sort by last modified time
    Searched full:trackbar (Results 1 - 25 of 47) sorted by null

1 2

  /external/opencv3/modules/highgui/src/
window_carbon.cpp 64 ControlRef trackbar; member in struct:CvTrackbar
162 CvTrackbar* trackbar = window->toolbar.first; local
164 while (trackbar != 0) {
166 trackbar = trackbar->next;
174 CvTrackbar* trackbar = NULL; local
176 trackbar = window->toolbar.first;
177 while (trackbar != 0 && trackbar->trackbar != handle
207 CvTrackbar* trackbar = window->toolbar.first; local
309 CvTrackbar* trackbar; local
469 CvTrackbar * trackbar = icvTrackbarByHandle (theControl); local
522 CvTrackbar* trackbar = 0; local
671 CvTrackbar* trackbar = 0; local
695 CvTrackbar* trackbar = 0; local
    [all...]
window_w32.cpp 293 CvTrackbar* trackbar = (CvTrackbar*)icvGetWindowLongPtr( hwnd, CV_USERDATA ); local
294 return trackbar != 0 && trackbar->signature == CV_TRACKBAR_MAGIC_VAL &&
295 trackbar->hwnd == hwnd ? trackbar : 0;
905 CvTrackbar* trackbar = NULL; local
943 for( trackbar = window->toolbar.first; trackbar != 0; )
945 CvTrackbar* next = trackbar->next;
946 if( trackbar->hwnd
1794 CvTrackbar* trackbar = icvTrackbarByHWND( slider ); local
1814 CvTrackbar* trackbar = window->toolbar.first; local
1984 CvTrackbar* trackbar = window->toolbar.first; local
2006 CvTrackbar* trackbar = 0; local
2238 CvTrackbar* trackbar = 0; local
2263 CvTrackbar* trackbar = 0; local
2297 CvTrackbar* trackbar = 0; local
    [all...]
window_gtk.cpp 1196 CvTrackbar* trackbar; local
1384 CvTrackbar* trackbar = window->toolbar.first; local
1405 CvTrackbar* trackbar = 0; local
1535 CvTrackbar* trackbar = 0; local
1560 CvTrackbar* trackbar = 0; local
1597 CvTrackbar* trackbar = 0; local
1813 CvTrackbar* trackbar = (CvTrackbar*)user_data; local
    [all...]
window_QT.qrc 13 <file alias="stylesheet-trackbar">files_Qt/stylesheet_trackbar.qss</file>
  /external/opencv3/doc/tutorials/highgui/trackbar/
trackbar.markdown 1 Adding a Trackbar to our applications! {#tutorial_trackbar}
8 for you. An example of this is a **Trackbar**
13 information from the trackbar.
20 - Add a Trackbar in an OpenCV window by using @ref cv::createTrackbar
26 \f$\alpha\f$ value by using the Trackbar.
44 * @brief Callback for trackbar
89 We only analyze the code that is related to Trackbar:
96 -# To create a trackbar, first we have to create the window in which it is going to be located. So:
100 -# Now we can create the Trackbar:
106 - Our Trackbar has a label **TrackbarName*
    [all...]
  /external/opencv3/doc/py_tutorials/py_gui/py_trackbar/
py_trackbar.markdown 0 Trackbar as the Color Palette {#tutorial_py_trackbar}
7 - Learn to bind trackbar to OpenCV windows
14 shows the color and three trackbars to specify each of B,G,R colors. You slide the trackbar and
17 For cv2.getTrackbarPos() function, first argument is the trackbar name, second one is the window
19 and fifth one is the callback function which is executed everytime trackbar value changes. The
20 callback function always has a default argument which is the trackbar position. In our case,
23 Another important application of trackbar is to use it as a button or switch. OpenCV, by default,
24 doesn't have button functionality. So you can use trackbar to get such functionality. In our
  /external/lzma/CPP/Windows/Control/
Trackbar.h 1 // Windows/Control/Trackbar.h
  /external/opencv3/samples/cpp/tutorial_code/ImgProc/
Morphology_2.cpp 45 /// Create Trackbar to select Morphology operation
48 /// Create Trackbar to select kernel type
53 /// Create Trackbar to choose kernel size
Morphology_1.cpp 45 /// Create Erosion Trackbar
54 /// Create Dilation Trackbar
Threshold.cpp 46 /// Create Trackbar to choose type of Threshold
  /external/opencv3/doc/py_tutorials/py_gui/
py_table_of_contents_gui.markdown 26 Create trackbar to
  /external/opencv3/samples/cpp/tutorial_code/HighGUI/
BasicLinearTransformsTrackbar.cpp 57 createTrackbar( "Contrast Trackbar", "New Image", &alpha, alpha_max, on_trackbar );
58 createTrackbar( "Brightness Trackbar", "New Image", &beta, beta_max, on_trackbar );
AddingImagesTrackbar.cpp 26 * @brief Callback for trackbar
  /external/opencv3/samples/cpp/tutorial_code/ImgTrans/
CannyDetector_Demo.cpp 29 * @brief Trackbar callback - Canny thresholds input with a ratio 1:3
67 /// Create a Trackbar for user to enter threshold
  /external/opencv3/samples/cpp/
morphology2.cpp 27 //the address of variable which receives trackbar position update
32 // callback function for open/close trackbar
45 // callback function for erode/dilate trackbar
connected_components.cpp 37 cout << "\n This program demonstrates connected components and use of the trackbar\n"
40 "The image is converted to grayscale and displayed, another image has a trackbar\n"
fitellipse.cpp 7 * Trackbar specify threshold parametr.
61 // Define trackbar callback functon. This function find contours,
edge.cpp 14 // define a trackbar callback
  /external/opencv3/doc/tutorials/imgproc/opening_closing_hats/
opening_closing_hats.markdown 119 /// Create Trackbar to select Morphology operation
122 /// Create Trackbar to select kernel type
127 /// Create Trackbar to choose kernel size
162 - The first trackbar **"Operator"** returns the kind of morphology operation to use
169 - The second trackbar **"Element"** returns **morph_elem**, which indicates what kind of
176 - The final trackbar **"Kernel Size"** returns the size of the kernel to be used
185 current trackbar values.
218 entered by the Trackbar:
  /external/opencv3/samples/cpp/tutorial_code/Histograms_Matching/
calcBackProject_Demo1.cpp 39 /// Create Trackbar to enter the number of bins
56 * @brief Callback to Trackbar
MatchTemplate_Demo.cpp 40 /// Create Trackbar
52 * @brief Trackbar callback
  /external/opencv3/modules/highgui/include/opencv2/
highgui.hpp 75 - To attach a trackbar, the window name parameter must be NULL.
79 attached to the control panel is a trackbar, or the control panel is empty, a new buttonbar is
404 /** @brief Creates a trackbar and attaches it to the specified window.
406 @param trackbarname Name of the created trackbar.
407 @param winname Name of the window that will be used as a parent of the created trackbar.
412 function should be prototyped as void Foo(int,void\*); , where the first parameter is the trackbar
415 @param userdata User data that is passed as is to the callback. It can be used to handle trackbar
418 The function createTrackbar creates a trackbar (a slider or range control) with the specified name
419 and range, assigns a variable value to be a position synchronized with the trackbar and specifies
420 the callback function onChange to be called on the trackbar position change. The created trackbar i
    [all...]
  /external/opencv3/doc/py_tutorials/
py_tutorials.markdown 10 Here you will learn how to display and save images and videos, control mouse events and create trackbar.
  /external/opencv3/doc/tutorials/highgui/
table_of_content_highgui.markdown 13 We will learn how to add a Trackbar to our applications
  /external/opencv3/doc/tutorials/imgproc/imgtrans/canny_detector/
canny_detector.markdown 71 Detector* (by means of a Trackbar)
122 -# Create a Trackbar for the user to enter the lower threshold for our Canny detector:
128 -# The variable to be controlled by the Trackbar is *lowThreshold* with a limit of
130 -# Each time the Trackbar registers an action, the callback function *CannyThreshold* will be
146 - *lowThreshold*: The value entered by the user moving the Trackbar

Completed in 681 milliseconds

1 2