1. 07 Feb, 2016 1 commit
  2. 06 Feb, 2016 1 commit
  3. 05 Feb, 2016 4 commits
  4. 04 Feb, 2016 7 commits
  5. 03 Feb, 2016 2 commits
  6. 02 Feb, 2016 3 commits
  7. 01 Feb, 2016 2 commits
  8. 30 Jan, 2016 3 commits
  9. 29 Jan, 2016 1 commit
  10. 26 Jan, 2016 2 commits
  11. 25 Jan, 2016 2 commits
  12. 23 Jan, 2016 2 commits
    • Patrick Snape's avatar
      Fix parsing of training vecs for FlannBasedMatcher · 05cfe286
      Patrick Snape authored
      FlannBasedMatcher::add is overloaded, but the style of parsing the
      InputArrayOfArrays does not match the style from
      DescriptorMatcher::add. The issue is that InputArrayOfArrays
      must be properly marshalled so that the data can be read
      correctly. In this case, the method expects the training
      descriptors to be either a vector of matrices or a single matrix
      (as is shown in DescriptorMatcher::add). These code
      replicates that for the case of the FlannBasedMatcher::add.
      
      In fact, a similar commit to this was added by 26d9a7cd but was
      ultimately not accepted in #4111. This is likely due to the
      fact that the input arrays were not parsed properly and the
      case of a single matrix was being improperly handled. I believe
      this commit to be correct given the logic from
      DescriptorMatcher::add.
      05cfe286
    • Patrick Snape's avatar
      Update indentation to match rest of file · 2f5ea343
      Patrick Snape authored
      Very cosmetic, but was analyzing code and just wanted to make it
      consistent.
      2f5ea343
  13. 21 Jan, 2016 3 commits
  14. 20 Jan, 2016 4 commits
  15. 19 Jan, 2016 2 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