1. 22 Apr, 2016 1 commit
  2. 17 Apr, 2016 1 commit
  3. 14 Apr, 2016 1 commit
  4. 01 Apr, 2016 1 commit
  5. 29 Mar, 2016 2 commits
    • Anatoly Orlov's avatar
      1740218e
    • Anatoly Orlov's avatar
      kalman.py was broken totally · 2be805ce
      Anatoly Orlov authored
      1. Following condition is True on each iteration becuase -1 % 0xFF is 255 not -1
      
      code = cv2.waitKey(100) % 0x100
      if code != -1:
         break
      
      this were resetting point position on each cycle not on key press as intended
      
      2. Previous small bug were masking serious bug with matrix operation on matrices of incorrect size.
         As the result on 2nd iteration of internal cycle program has crushed.
      
         I have fixed it too, matrix operation was taken from examples/cpp/kalman.cpp where it looks like
         randn( processNoise, Scalar(0), Scalar::all(sqrt(KF.processNoiseCov.at<float>(0, 0))));
         which is something totally different from previous code here.
      
         Example behave as it should now, i.e. point moving by circle trajectory as in C++ example.
      2be805ce
  6. 24 Mar, 2016 2 commits
  7. 19 Mar, 2016 1 commit
  8. 16 Mar, 2016 1 commit
  9. 14 Mar, 2016 1 commit
  10. 03 Mar, 2016 8 commits
  11. 25 Feb, 2016 2 commits
  12. 24 Feb, 2016 1 commit
  13. 15 Feb, 2016 6 commits
  14. 12 Feb, 2016 2 commits
  15. 10 Feb, 2016 6 commits
  16. 18 Jan, 2016 1 commit
    • Alexander Fedorov's avatar
      Fixed parser for img1_filename and img2_filename. · 474c53ac
      Alexander Fedorov authored
      Without fixes after 68 line (img1_filename = parser.get<std::string>(0);) OpenCV Error:
      ./stereo_matching im0.png im1.png --max-disparity=16 --blocksize=17
      
      OpenCV Error: Bad argument (undeclared position 0 requested) in getByIndex, file /home/entodi/opencv/modules/core/src/command_line_parser.cpp, line 169
      terminate called after throwing an instance of 'cv::Exception'
        what():  /home/entodi/opencv/modules/core/src/command_line_parser.cpp:169: error: (-5) undeclared position 0 requested in function getByIndex
      474c53ac
  17. 13 Jan, 2016 1 commit
  18. 30 Dec, 2015 1 commit
  19. 26 Dec, 2015 1 commit