1. 16 Oct, 2016 1 commit
  2. 09 Oct, 2016 1 commit
  3. 08 Aug, 2016 2 commits
  4. 01 Aug, 2016 1 commit
  5. 10 Dec, 2015 1 commit
  6. 16 Oct, 2015 1 commit
  7. 28 Apr, 2015 1 commit
    • Martin Ueding's avatar
      Add example data types for calibrateCamera call · 9e297628
      Martin Ueding authored
      It took me a while to figure out what was meant with
      
          OpenCV Error: Assertion failed (i < 0) in getMat
      
      While searching for this error message I found [a list of error
      messages](https://adventuresandwhathaveyou.wordpress.com/2014/03/14/opencv-error-messages-suck/)
      which also explained what the problem was: The data type for `rvecs` was
      not a simple `cv::Mat` but a `std::vector<cv::Mat>`.
      
      After I fixed that, I got the next error message:
      
          OpenCV Error: Assertion failed (ni > 0 && ni == ni1) in
          collectCalibrationData, file
          /build/buildd/opencv-2.4.9+dfsg/modules/calib3d/src/calibration.cpp,
          line 3193
      
      The problem here was that my data type for the `objectPoints` was just
      `vector<Vec3f>` and not `vector<vector<Vec3f>>`.
      
      In order to save other people the time looking for this, I added
      explicit examples of the needed data types into the documentation of the
      function. I had to re-read the current version a couple of times until I
      can read the needed levels of `vector<>`. Having this example would have
      really helped me there.
      
      Conflicts:
      	modules/calib3d/include/opencv2/calib3d.hpp
      9e297628
  8. 26 Dec, 2014 1 commit
  9. 06 Oct, 2014 2 commits
  10. 02 Oct, 2014 2 commits
  11. 09 Sep, 2014 1 commit
  12. 08 Sep, 2014 1 commit
  13. 21 Aug, 2014 1 commit
  14. 19 Aug, 2014 1 commit
  15. 11 Aug, 2014 2 commits
  16. 30 Jul, 2014 1 commit
  17. 25 Jul, 2014 1 commit
  18. 09 Jul, 2014 1 commit
  19. 08 Jul, 2014 1 commit
  20. 26 Jun, 2014 1 commit
  21. 16 Jun, 2014 1 commit
    • Daniel Angelov's avatar
      Updated findHomography docs branch 2.4 · 660d7cd3
      Daniel Angelov authored
      Updated the documents to give warning to the users of `findHomography` that the function may return an empty matrix in some cases. 
      The user must take care of checking that.
      660d7cd3
  22. 14 Jun, 2014 1 commit
    • Daniel Angelov's avatar
      Removed "CV_" prefix from constants in docs · 54292a83
      Daniel Angelov authored
      The `calib3d.hpp` has a definition of the constant that does not contain the prefix "CV_".
      The affected methods were `findHomography` and `findEssentialMat`.
      Now the documentation updates the definition of the constants to conform to the header.
      54292a83
  23. 30 May, 2014 1 commit
    • Daniel Angelov's avatar
      Fixed inconsistency with flag names · ce1b6e21
      Daniel Angelov authored
      Fixed inconsistency with flag names for solvePnP. 
      The default value for the function lacks the CV_ prefix. The code checks against "ITERATIVE". The suggested values for the parameters *include* the prefix.
      Even though the enum CV_ITERATIVE (+ CV_P3P, CV_EPNP) = ITERATIVE (& P3P, EPNP), lets show to the users only one of them.
      Now the user sees only {ITERATIVE, P3P, EPNP}.
      ce1b6e21
  24. 19 May, 2014 1 commit
  25. 14 May, 2014 1 commit
  26. 12 May, 2014 3 commits
  27. 07 May, 2014 1 commit
  28. 06 May, 2014 1 commit
  29. 29 Apr, 2014 1 commit
  30. 28 Apr, 2014 1 commit
  31. 27 Apr, 2014 1 commit
  32. 07 Jan, 2014 2 commits
  33. 17 Dec, 2013 1 commit