1. 11 Nov, 2018 1 commit
  2. 09 Nov, 2018 1 commit
  3. 08 Nov, 2018 2 commits
  4. 15 Oct, 2018 1 commit
  5. 11 Oct, 2018 1 commit
    • Sayed Adel's avatar
      Change behaviour of 16-bit multiply operator · 5771fd69
      Sayed Adel authored
        - redefine 16-bit multiply operator to perform saturating multiply
          instead of non-saturating multiply
        - implement 8-bit multiply operator to perform saturating multiply
        - implement v_mul_wrap() for 8-bit, 16-bit non-saturating multiply
        - improve performance of v_mul_hi() for VSX
        - update intrin tests with new changes
        - replace unv 16-bit multiplication operator with v_mul_wrap due behavior changes
      
        - Several improvements depend on vpisarev review
      
          * initial forward declarations for universal intrinsics
          * move emulating SSE intrinsics into separate file
          * implement v_mul_expand for 8-bit
          * reimplement saturating multiply using v_mul_expand + v_pack
          * map v_expand, v_load_expand, v_load_expand_q to sse4.1
          * fix overflow avx2::v_pack(uint32)
          * implement two universal intrinsics v_expand_low and v_expand_high
      5771fd69
  6. 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
  7. 13 Sep, 2018 1 commit
  8. 07 Sep, 2018 1 commit
    • cyy's avatar
      Merge pull request #12458 from DEEPIR:3.4 · 286c2c23
      cyy authored
      * may be an typo fix
      
      * remove identical branch,may be paste error
      
      * add parentheses around macro parameter
      
      * simplify if condition
      
      * check malloc fail
      
      * change the condition of branch removed by commit 3041502861318c85d901e8c08226ff67898c77ed
      286c2c23
  9. 06 Sep, 2018 1 commit
  10. 31 Aug, 2018 1 commit
  11. 21 Aug, 2018 1 commit
    • Jiri Horner's avatar
      Merge pull request #12248 from hrnr:video_remove_ransac · 49283ec0
      Jiri Horner authored
      * video: remove duplicate RANSAC code
      
      * remove RANSAC code video module. The module now uses RANSAC estimators from calib3d.
      * deprecate estimateRigidTransform
      
      * replace internal usage of deprecated estimateRigidTransform
      
      * remove from wrappers
      * replace usage in shape module. shape module now links to calib3d instead of video module.
      * reprecate also C API version
      
      * remove cvEstimateRigidTransform
      
      * supress deprecated warnings in estimateRigidTransform test
      
      * the function is now deprecated
      49283ec0
  12. 04 Jul, 2018 1 commit
  13. 26 Jun, 2018 1 commit
    • branka-plateiq's avatar
      Pass RANSAC parameters as function input (#10569) · 34ad9b8a
      branka-plateiq authored
      * Pass RANSAC parameters as function input
      
      * Clean up unnecessary code
      
      * Keep the original function signature
      
      * Clean up based on PR comments
      
      Replace array with vector.
      
      Correct naming convention for input variables.
      
      Add checks on input variables.
      
      * Use vector instead of array for dynamic size
      
      * Revert change.
      
      * Use dynamic array
      
      * Fix wrong syntax in array allocation
      
      * Undo change
      
      * Fix variable name
      
      * Use vector and not array
      
      * fixed compile warning on Windows
      34ad9b8a
  14. 24 Apr, 2018 1 commit
  15. 10 Apr, 2018 1 commit
  16. 28 Mar, 2018 1 commit
  17. 13 Feb, 2018 1 commit
  18. 02 Feb, 2018 1 commit
    • Ya-Chiu Wu's avatar
      Merge pull request #10553 from GlueCrow:bgfg_knn_opencl · c8d8b1fb
      Ya-Chiu Wu authored
      Add ocl version BackgroundSubtractorKNN (#10553)
      
      * Add ocl version bgfg_knn
      
      * Add ocl KNN perf test
      
      * ocl KNN: Avoid unnecessary initializing when non-UMat parameters are used
      
      * video: turn off OpenCL for color KNN on Intel devices
      
      due performance degradation
      
      * video: turn off KNN OpenCL on Apple devices with Intel iGPU
      
      due process freeze during clBuildProgram() call
      c8d8b1fb
  19. 21 Jan, 2018 1 commit
  20. 18 Jan, 2018 1 commit
  21. 27 Dec, 2017 1 commit
  22. 23 Dec, 2017 1 commit
  23. 22 Dec, 2017 1 commit
  24. 13 Dec, 2017 1 commit
  25. 05 Dec, 2017 1 commit
  26. 28 Nov, 2017 1 commit
    • Alexander Alekhin's avatar
      ocl: avoid unnecessary loading/initializing OpenCL subsystem · 0ed3209b
      Alexander Alekhin authored
      If there are no OpenCL/UMat methods calls from application.
      
      OpenCL subsystem is initialized:
      - haveOpenCL() is called from application
      - useOpenCL() is called from application
      - access to OpenCL allocator: UMat is created (empty UMat is ignored) or UMat <-> Mat conversions are called
      
      Don't call OpenCL functions if OPENCV_OPENCL_RUNTIME=disabled
      (independent from OpenCL linkage type)
      0ed3209b
  27. 31 Oct, 2017 1 commit
  28. 10 Jul, 2017 1 commit
  29. 28 Jun, 2017 1 commit
  30. 27 Jun, 2017 1 commit
  31. 07 Jun, 2017 1 commit
  32. 04 May, 2017 1 commit
  33. 27 Apr, 2017 1 commit
  34. 12 Apr, 2017 1 commit
  35. 11 Apr, 2017 1 commit
  36. 06 Apr, 2017 1 commit
  37. 24 Mar, 2017 1 commit
  38. 14 Mar, 2017 1 commit
  39. 09 Mar, 2017 1 commit