1. 23 Oct, 2019 1 commit
    • float13's avatar
      Tutorial - Make required input args positional. · 1accf3b3
      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 :)
      1accf3b3
  2. 04 Sep, 2019 1 commit
  3. 15 May, 2019 3 commits
    • Alexander Alekhin's avatar
    • mehlukas's avatar
      Merge pull request #14314 from mehlukas:3.4-opticalflow · 6bff0e24
      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
      6bff0e24
    • mehlukas's avatar
      Merge pull request #14393 from mehlukas:3.4-meanshift · 47c45e5b
      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
      47c45e5b
  4. 18 Feb, 2019 1 commit
  5. 04 Dec, 2018 1 commit
  6. 16 Nov, 2018 1 commit
  7. 26 Oct, 2018 1 commit
  8. 25 Oct, 2018 1 commit
  9. 18 Oct, 2018 1 commit
  10. 14 Sep, 2018 1 commit
  11. 11 Sep, 2018 1 commit
  12. 31 Aug, 2018 1 commit
  13. 30 Aug, 2018 1 commit
  14. 17 Aug, 2018 1 commit
  15. 31 Jul, 2018 1 commit
    • luz.paz's avatar
      Misc. typos · 2003eb1b
      luz.paz authored
      Found via `codespell -q 3 -I ../opencv-whitelist.txt --skip="./3rdparty"`
      2003eb1b
  16. 27 Jul, 2018 1 commit
  17. 13 Jul, 2018 1 commit
  18. 11 Jul, 2018 1 commit
  19. 02 Jul, 2018 1 commit
  20. 27 Jun, 2018 1 commit
  21. 10 Jun, 2018 1 commit
  22. 08 Jun, 2018 1 commit
  23. 01 Jun, 2018 1 commit
  24. 29 May, 2018 1 commit
    • catree's avatar
      Add Java and Python code for the following features2d tutorials: Harris corner… · ade21f14
      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.
      ade21f14
  25. 23 May, 2018 1 commit
  26. 18 May, 2018 2 commits
  27. 16 May, 2018 1 commit
  28. 11 May, 2018 2 commits
  29. 03 May, 2018 1 commit
  30. 24 Apr, 2018 1 commit
  31. 03 Apr, 2018 1 commit
  32. 28 Mar, 2018 1 commit
  33. 26 Mar, 2018 1 commit
  34. 15 Mar, 2018 1 commit
  35. 15 Feb, 2018 1 commit
  36. 12 Feb, 2018 1 commit
    • Maksim Shabunin's avatar
      cmake: refactored scripts with samples building: · 2200e13c
      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
      2200e13c