1. 09 Nov, 2018 1 commit
  2. 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
  3. 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
  4. 26 Jul, 2018 1 commit
  5. 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
  6. 10 Apr, 2018 1 commit
  7. 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
  8. 09 Oct, 2017 1 commit
  9. 17 Sep, 2017 1 commit
  10. 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
  11. 23 Aug, 2017 1 commit
    • Pavel Vlasov's avatar
      ICV2017u3 package update; · a57718e1
      Pavel Vlasov authored
      - Optimizations set change. Now IPP integrations will provide code for SSE42, AVX2 and AVX512 (SKX) CPUs only. For HW below SSE42 IPP code is disabled.
      - Performance regressions fixes for IPP code paths;
      - cv::boxFilter integration improvement;
      - cv::filter2D integration improvement;
      a57718e1
  12. 20 Jun, 2017 1 commit
    • Maksim Shabunin's avatar
      Rewritten some tests in videoio and imgcodecs modules · 87b569d8
      Maksim Shabunin authored
      general:
      - all iterative tests have been replaced with parameterized tests
      - old-style try..catch tests have been modified to use EXPECT_/ASSERT_ gtest macros
      - added temporary files cleanup
      - modified MatComparator error message formatting
      
      imgcodecs:
      - test_grfmt.cpp split to test_jpg.cpp, test_png.cpp, test_tiff.cpp, etc.
      
      videoio:
      - added public HAVE_VIDEO_INPUT, HAVE_VIDEO_OUTPUT definitions to cvconfig.h
      - built-in MotionJPEG codec could not be tested on some platforms (read_write test was disabled if ffmpeg is off, encoding/decoding was handled by ffmpeg otherwise).
      - image-related tests moved to imgcodecs (Videoio_Image)
      - several property get/set tests have been combined into one
      - added MotionJPEG test video to opencv_extra
      87b569d8
  13. 18 Nov, 2016 1 commit
  14. 21 May, 2016 1 commit
    • Tomoaki Teshima's avatar
      add feature to convert FP32(float) to FP16(half) · b2ad7cd9
      Tomoaki Teshima authored
        * check compiler support
        * check HW support before executing
        * add test doing round trip conversion from / to FP32
        * treat array correctly if size is not multiple of 4
        * add declaration to prevent warning
        * make it possible to enable fp16 on 32bit ARM
        * let the conversion possible on non-supported HW, too.
        * add test using both HW and SW implementation
      b2ad7cd9
  15. 01 Apr, 2016 1 commit
  16. 07 Mar, 2016 1 commit
  17. 07 Dec, 2015 1 commit
  18. 13 Oct, 2015 1 commit
  19. 21 Sep, 2015 1 commit
  20. 21 Jul, 2015 1 commit
  21. 27 Feb, 2015 1 commit
  22. 26 Feb, 2015 1 commit
  23. 12 Jan, 2015 4 commits
  24. 04 Jan, 2015 1 commit
  25. 13 Aug, 2014 1 commit
    • Adil Ibragimov's avatar
      Several type of formal refactoring: · 8a4a1bb0
      Adil Ibragimov authored
      1. someMatrix.data -> someMatrix.prt()
      2. someMatrix.data + someMatrix.step * lineIndex -> someMatrix.ptr( lineIndex )
      3. (SomeType*) someMatrix.data -> someMatrix.ptr<SomeType>()
      4. someMatrix.data -> !someMatrix.empty() ( or !someMatrix.data -> someMatrix.empty() ) in logical expressions
      8a4a1bb0
  26. 09 Jul, 2014 1 commit
  27. 06 Jun, 2014 1 commit
  28. 09 Apr, 2014 1 commit
  29. 08 Apr, 2014 1 commit
  30. 23 Feb, 2014 1 commit
  31. 18 Dec, 2013 1 commit
  32. 15 Oct, 2013 1 commit
  33. 24 Jun, 2013 1 commit
  34. 19 Jun, 2013 1 commit
  35. 18 Jun, 2013 2 commits
  36. 12 May, 2013 1 commit