- 23 Oct, 2019 1 commit
-
-
float13 authored
I think it would help to change all 3 of the the input file arguments to be "positional" for consistency with the other tutorials. This also simplifies the command line input to run this tutorial by reducing typing, and helpfully prints the "usage" info if any of the 3 required inputs are missing. I'm new to OpenCV and working through the tutorials. I kept getting runtime errors with this one until I realized that the arguments weren't positional, and I was missing the "--input1", "--input2, "--input3" flags preceding the filenames. All of the previous tutorials had required filenames as positional arguments and didn't require this. The original code would require each input to be specified like this: ./compareHist_Demo --input1 filename1 --input2 filename2 --input3 filename3 But with this change, the above command is simplified to: ./compareHist_Demo filename1 filename2 filename3 This avoids a confusing runtime error to make things simpler for newcomers like me :)
-
- 04 Sep, 2019 1 commit
-
-
Suleyman TURKMEN authored
-
- 15 May, 2019 3 commits
-
-
Alexander Alekhin authored
-
mehlukas authored
Extend optical flow tutorial (#14314) * extend python optical flow tutorial with cpp example code and add it to general tutorial directory * remove unused parameters, fix comparison between signed and unsigned int * fix hsv range problem * switch to samples::findFile for sample file location * switch to command line parameter for path * remove old tutorial as in 14393 * minor fixes
-
mehlukas authored
Extend meanshift tutorial (#14393) * copy original tutorial and python code * add cpp code, fix python code * add camshift cpp code, fix bug in meanshift code * add description to ToC page * fix shadowing previous local declaration * fix grammar: with -> within * docs: remove content of old py_meanshift tutorial, add link * docs: replace meanshift tutorial subpage in Python tutorials * switch to ref to fix wrong breadcrumb navigation * switch to cmdline for path as in #14314 * Apply suggestions from code review * order programming languages alphabetically
-
- 18 Feb, 2019 1 commit
-
-
catree authored
Fix arguments parsing. Add possibility to choose between different features type. Add keypoints matching visualization. Auto format code.
-
- 04 Dec, 2018 1 commit
-
-
Alexander Alekhin authored
-
- 16 Nov, 2018 1 commit
-
-
Alexander Alekhin authored
-
- 26 Oct, 2018 1 commit
-
-
catree authored
-
- 25 Oct, 2018 1 commit
-
-
catree authored
Add a function that draws frame axes. Useful for debugging purpose and to check the correctness of the output of a pose estimation method.
-
- 18 Oct, 2018 1 commit
-
-
Karpushin Vladislav authored
-
- 14 Sep, 2018 1 commit
-
-
Karpushin Vladislav authored
-
- 11 Sep, 2018 1 commit
-
-
jsxyhelu authored
find innercircle of contour by using pointPolygonTest: (#12206)
-
- 31 Aug, 2018 1 commit
-
-
Vlad Karpushin authored
* doc: add new tutorial motion deblur filter * Update motion_deblur_filter.markdown a few minor changes
-
- 30 Aug, 2018 1 commit
-
-
Alexander Alekhin authored
except header file with conversion routines (will be removed in OpenCV 4.0)
-
- 17 Aug, 2018 1 commit
-
-
Suleyman TURKMEN authored
-
- 31 Jul, 2018 1 commit
-
-
luz.paz authored
Found via `codespell -q 3 -I ../opencv-whitelist.txt --skip="./3rdparty"`
-
- 27 Jul, 2018 1 commit
-
-
Karpushin Vladislav authored
In this tutorial you will learn: - what is a degradation image model - what is a PSF of an out-of-focus image - how to restore a blurred image - what is the Wiener filter
-
- 13 Jul, 2018 1 commit
-
-
catree authored
-
- 11 Jul, 2018 1 commit
-
-
catree authored
- Changing the contrast and brightness of an image! - Operations with images
-
- 02 Jul, 2018 1 commit
-
-
catree authored
Add Java and Python code for AKAZE local features matching tutorial. Fix incorrect uses of Mat.mul() in Java code. Uniform Lowe's ratio test in the code.
-
- 27 Jun, 2018 1 commit
-
-
catree authored
Add Java and Python code for Image Segmentation with Distance Transform and Watershed Algorithm tutorial. Use more Pythonic code.
-
- 10 Jun, 2018 1 commit
-
-
catree authored
Add Java and Python code for the following imgproc tutorials: Finding contours in your image, Convex Hull, Creating Bounding boxes and circles for contours, Creating Bounding rotated boxes and ellipses for contours, Image Moments, Point Polygon Test.
-
- 08 Jun, 2018 1 commit
-
-
catree authored
-
- 01 Jun, 2018 1 commit
-
-
take1014 authored
-
- 29 May, 2018 1 commit
-
-
catree authored
Add Java and Python code for the following features2d tutorials: Harris corner detector, Shi-Tomasi corner detector, Creating your own corner detector, Detecting corners location in subpixels, Feature Detection, Feature Description, Feature Matching with FLANN, Features2D + Homography to find a known object. Use Lowe's ratio test to filter the matches.
-
- 23 May, 2018 1 commit
-
-
catree authored
Add Java and Python code for the following imgproc tutorials: Affine Transformations, Histogram Equalization, Histogram Calculation, Histogram Comparison, Back Projection.
-
- 18 May, 2018 2 commits
- 16 May, 2018 1 commit
-
-
catree authored
-
- 11 May, 2018 2 commits
-
-
catree authored
-
-
- 03 May, 2018 1 commit
-
-
Sayed Adel authored
-
- 24 Apr, 2018 1 commit
-
-
Dmitry Kurtaev authored
* Custom deep learning layers support * Stack custom deep learning layers
-
- 03 Apr, 2018 1 commit
-
-
Alexander Alekhin authored
-
- 28 Mar, 2018 1 commit
-
-
Alexander Alekhin authored
-
- 26 Mar, 2018 1 commit
-
-
Alexander Alekhin authored
- CV_RGB() macro is moved into opencv2/imgproc.hpp from imgproc_c.h - samples/cpp/filestorage_base64.cpp is dropped
-
- 15 Mar, 2018 1 commit
-
-
berak authored
also add comments explaining the change
-
- 15 Feb, 2018 1 commit
-
-
Steven authored
-
- 12 Feb, 2018 1 commit
-
-
Maksim Shabunin authored
- allow installing samples sources on all platforms even if BUILD_EXAMPLES is disabled, fixed minor issues in sources installation process - use 'example_<group>_<name>' scheme for target and binary file naming - use single function for sample executable creation
-