1. 09 Nov, 2018 1 commit
  2. 08 Nov, 2018 1 commit
  3. 01 Nov, 2018 1 commit
    • Vadim Pisarevsky's avatar
      completely new C++ persistence implementation (#13011) · 0f622206
      Vadim Pisarevsky authored
      * integrated the new C++ persistence; removed old persistence; most of OpenCV compiles fine! the tests have not been run yet
      
      * fixed multiple bugs in the new C++ persistence
      
      * fixed raw size of the parsed empty sequences
      
      * [temporarily] excluded obsolete applications traincascade and createsamples from build
      
      * fixed several compiler warnings and multiple test failures
      
      * undo changes in cocoa window rendering (that was fixed in another PR)
      
      * fixed more compile warnings and the remaining test failures (hopefully)
      
      * trying to fix the last little warning
      0f622206
  4. 07 Oct, 2018 1 commit
  5. 21 Sep, 2018 1 commit
    • Hamdi Sahloul's avatar
      Merge pull request #12310 from cv3d:chunks/enum_interface · ef5579dc
      Hamdi Sahloul authored
      * Cleanup macros and enable expansion of `__VA_ARGS__` for Visual Studio
      
      * Macros for enum-arguments backwards compatibility
      
      * Convert struct Param to enum struct
      
      * Enabled ParamType.type for enum types
      
      * Enabled `cv.read` and `cv.write` for enum types
      
      * Rename unnamed enum to AAKAZE.DescriptorType
      
      * Rename unnamed enum to AccessFlag
      
      * Rename unnamed enum to AgastFeatureDetector.DetectorType
      
      * Convert struct DrawMatchesFlags to enum struct
      
      * Rename unnamed enum to FastFeatureDetector.DetectorType
      
      * Rename unnamed enum to Formatter.FormatType
      
      * Rename unnamed enum to HOGDescriptor.HistogramNormType
      
      * Rename unnamed enum to DescriptorMatcher.MatcherType
      
      * Rename unnamed enum to KAZE.DiffusivityType
      
      * Rename unnamed enum to ORB.ScoreType
      
      * Rename unnamed enum to UMatData.MemoryFlag
      
      * Rename unnamed enum to _InputArray.KindFlag
      
      * Rename unnamed enum to _OutputArray.DepthMask
      
      * Convert normType enums to static const NormTypes
      
      * Avoid conflicts with ElemType
      
      * Rename unnamed enum to DescriptorStorageFormat
      ef5579dc
  6. 19 Sep, 2018 1 commit
  7. 10 Sep, 2018 1 commit
    • Vadim Pisarevsky's avatar
      added basic support for CV_16F (the new datatype etc.) (#12463) · 6d7f5871
      Vadim Pisarevsky authored
      * added basic support for CV_16F (the new datatype etc.). CV_USRTYPE1 is now equal to CV_16F, which may break some [rarely used] functionality. We'll see
      
      * fixed just introduced bug in norm; reverted errorneous changes in Torch importer (need to find a better solution)
      
      * addressed some issues found during the PR review
      
      * restored the patch to fix some perf test failures
      6d7f5871
  8. 07 Sep, 2018 1 commit
  9. 06 Sep, 2018 1 commit
  10. 02 Sep, 2018 3 commits
  11. 30 Aug, 2018 1 commit
  12. 28 Aug, 2018 1 commit
  13. 26 Jul, 2018 1 commit
  14. 24 Jul, 2018 1 commit
  15. 16 Jul, 2018 1 commit
    • Vadim Pisarevsky's avatar
      Wide univ intrinsics (#11953) · f058b5fb
      Vadim Pisarevsky authored
      * core:OE-27 prepare universal intrinsics to expand (#11022)
      
      * core:OE-27 prepare universal intrinsics to expand (#11022)
      
      * core: Add universal intrinsics for AVX2
      
      * updated implementation of wide univ. intrinsics; converted several OpenCV HAL functions: sqrt, invsqrt, magnitude, phase, exp to the wide universal intrinsics.
      
      * converted log to universal intrinsics; cleaned up the code a bit; added v_lut_deinterleave intrinsics.
      
      * core: Add universal intrinsics for AVX2
      
      * fixed multiple compile errors
      
      * fixed many more compile errors and hopefully some test failures
      
      * fixed some more compile errors
      
      * temporarily disabled IPP to debug exp & log; hopefully fixed Doxygen complains
      
      * fixed some more compile errors
      
      * fixed v_store(short*, v_float16&) signatures
      
      * trying to fix the test failures on Linux
      
      * fixed some issues found by alalek
      
      * restored IPP optimization after the patch with AVX wide intrinsics has been properly tested
      
      * restored IPP optimization after the patch with AVX wide intrinsics has been properly tested
      f058b5fb
  16. 05 Jul, 2018 1 commit
  17. 04 Jul, 2018 1 commit
  18. 04 Jun, 2018 1 commit
  19. 15 May, 2018 1 commit
  20. 24 Apr, 2018 1 commit
  21. 10 Apr, 2018 2 commits
  22. 28 Mar, 2018 1 commit
  23. 13 Feb, 2018 1 commit
  24. 07 Feb, 2018 1 commit
  25. 03 Feb, 2018 1 commit
    • Alexander Alekhin's avatar
      ts: refactor OpenCV tests · 4a297a24
      Alexander Alekhin authored
      - removed tr1 usage (dropped in C++17)
      - moved includes of vector/map/iostream/limits into ts.hpp
      - require opencv_test + anonymous namespace (added compile check)
      - fixed norm() usage (must be from cvtest::norm for checks) and other conflict functions
      - added missing license headers
      4a297a24
  26. 27 Jan, 2018 1 commit
  27. 25 Jan, 2018 1 commit
  28. 27 Dec, 2017 1 commit
  29. 07 Dec, 2017 1 commit
  30. 06 Dec, 2017 1 commit
  31. 01 Dec, 2017 1 commit
  32. 27 Nov, 2017 1 commit
  33. 09 Nov, 2017 1 commit
  34. 09 Oct, 2017 1 commit
  35. 17 Sep, 2017 1 commit
  36. 10 Sep, 2017 1 commit
  37. 04 Sep, 2017 1 commit
    • Christof Kaufmann's avatar
      Add multi-channel mask support to mean, meanStdDev and setTo · 46a668c5
      Christof Kaufmann authored
      This adds the possibility to use multi-channel masks for the functions
      cv::mean, cv::meanStdDev and the method Mat::setTo. The tests have now a
      probability to use multi-channel masks for operations that support them.
      This also includes Mat::copyTo, which supported multi-channel masks
      before, but there was no test confirming this.
      46a668c5