1. 23 Aug, 2018 1 commit
  2. 21 Aug, 2018 1 commit
  3. 15 Aug, 2018 3 commits
    • Alexander Alekhin's avatar
      89a7e841
    • Alexander Alekhin's avatar
      opencv-core: avoid using of multi-argument CV_Assert() · 8277ca6a
      Alexander Alekhin authored
      replace to CV_Assert_N()
      8277ca6a
    • Jan Beich's avatar
      stereo: unbreak with clang 7 · 4e10bc5d
      Jan Beich authored
       modules/stereo/src/descriptor.cpp:229:34: error: ordered comparison between pointer and zero ('const int *' and 'int')
      	     CV_Assert(image.size > 0);
      		       ~~~~~~~~~~ ^ ~
       modules/core/include/opencv2/core/base.hpp:478:84: note: expanded from macro 'CV_Assert'
       #define CV_Assert(...) do { CVAUX_CONCAT(CV_Assert_, CV_VA_NUM_ARGS(__VA_ARGS__)) (__VA_ARGS__); } while(0)
      										    ^~~~~~~~~~~
       modules/core/include/opencv2/core/base.hpp:455:35: note: expanded from macro 'CV_Assert_1'
       #define CV_Assert_1( expr ) if(!!(expr)) ; else cv::error( cv::Error::StsAssert, #expr, CV_Func, __FILE__, __LINE__ )
      				   ^~~~
       modules/stereo/src/descriptor.cpp:230:33: error: ordered comparison between pointer and zero ('const int *' and 'int')
      	     CV_Assert(cost.size > 0);
      		       ~~~~~~~~~ ^ ~
       modules/core/include/opencv2/core/base.hpp:478:84: note: expanded from macro 'CV_Assert'
       #define CV_Assert(...) do { CVAUX_CONCAT(CV_Assert_, CV_VA_NUM_ARGS(__VA_ARGS__)) (__VA_ARGS__); } while(0)
      										    ^~~~~~~~~~~
       modules/core/include/opencv2/core/base.hpp:455:35: note: expanded from macro 'CV_Assert_1'
       #define CV_Assert_1( expr ) if(!!(expr)) ; else cv::error( cv::Error::StsAssert, #expr, CV_Func, __FILE__, __LINE__ )
      				   ^~~~
      4e10bc5d
  4. 13 Aug, 2018 1 commit
  5. 12 Aug, 2018 1 commit
  6. 09 Aug, 2018 5 commits
  7. 03 Aug, 2018 1 commit
  8. 24 Jul, 2018 2 commits
  9. 23 Jul, 2018 2 commits
  10. 18 Jul, 2018 4 commits
  11. 17 Jul, 2018 1 commit
  12. 16 Jul, 2018 1 commit
  13. 11 Jul, 2018 4 commits
  14. 09 Jul, 2018 3 commits
  15. 07 Jul, 2018 1 commit
  16. 05 Jul, 2018 1 commit
  17. 02 Jul, 2018 4 commits
  18. 29 Jun, 2018 2 commits
  19. 13 Jun, 2018 1 commit
  20. 04 Jun, 2018 1 commit
    • Colin's avatar
      Merge pull request #1652 from fallenlord:master · 25a01dc4
      Colin authored
      Bug fixes: using mask with BinaryDescriptor  (#1652)
      
      * Bug fixes: erasing an element from std::vector should not move iterator forward
      
      * Bug fixes: add a NULL checking
      
      * Remove the appoggio matrix generation, which is useless
      25a01dc4