1. 24 12月, 2021 1 次提交
  2. 23 12月, 2021 1 次提交
  3. 19 11月, 2021 1 次提交
    • N
      Add warning message to imread() · 79d4e865
      nickjackolson 提交于
      Add a warning message using CV_LOG__WARNING().
      This way api behaviour is preserved. Outputs are
      the same but user gets an extra warning in case
      fopen() fails to access image file for some reason.
      This would help new users and also debugging
      complex apps which use imread()
      Signed-off-by: Nnickjackolson <metedurlu@gmail.com>
      79d4e865
  4. 27 10月, 2021 1 次提交
  5. 22 10月, 2021 1 次提交
  6. 21 10月, 2021 1 次提交
  7. 12 10月, 2021 1 次提交
  8. 06 10月, 2021 1 次提交
  9. 07 9月, 2021 1 次提交
  10. 25 7月, 2021 1 次提交
  11. 02 6月, 2021 1 次提交
  12. 13 5月, 2021 1 次提交
  13. 29 4月, 2021 1 次提交
  14. 27 4月, 2021 1 次提交
    • A
      Merge pull request #19970 from antonio-rojas:master · 971dacaf
      Antonio Rojas 提交于
      Support building with OpenEXR 3.x
      
      * Support OpenEXR 3.0
      
      Try to find OpenEXR 3.0 using the upstream cmake config, and fallback to the previous algorithm if not found
      
      * Add explicit ImfFrameBuffer.h include
      
      This was transitively included with OpenEXR 2.x, but that's no longer the case with OpenEXR 3.x
      971dacaf
  15. 24 4月, 2021 1 次提交
  16. 03 3月, 2021 1 次提交
  17. 21 2月, 2021 2 次提交
  18. 16 2月, 2021 1 次提交
  19. 14 2月, 2021 1 次提交
  20. 12 2月, 2021 1 次提交
  21. 10 2月, 2021 1 次提交
  22. 06 2月, 2021 1 次提交
  23. 25 12月, 2020 1 次提交
  24. 23 12月, 2020 1 次提交
  25. 25 11月, 2020 1 次提交
    • J
      Merge pull request #18826 from Rightpoint:feature/colejd/build-catalyst-xcframework · 85b0fb2a
      Jonathan Cole 提交于
      Support XCFramework builds, Catalyst
      
      * Early work on xcframework support
      
      * Improve legibility
      
      * Somehow this works
      
      * Specify ABIs in a place where they won't get erased
      
      If you pass in the C/CXX flags from the Python script, they won't be respected. By doing it in the actual toolchain, the options are respected and Catalyst successfully links.
      
      * Clean up and push updates
      
      * Actually use Catalyst ABI
      
      Needed to specify EXE linker flags to get compiler tests to link to the Catalyst ABIs.
      
      * Clean up
      
      * Revert changes to common toolchain that don't matter
      
      * Try some things
      
      * Support Catalyst build in OSX scripts
      
      * Remove unnecessary iOS reference to AssetsLibrary framework
      
      * Getting closer
      
      * Try some things, port to Python 3
      
      * Some additional fixes
      
      * Point Cmake Plist gen to osx directory for Catalyst targets
      
      * Remove dynamic lib references for Catalyst, copy iOS instead of macos
      
      * Add flag for building only specified archs, remove iOS catalyst refs
      
      * Add build-xcframework.sh
      
      * Update build-xcframework.sh
      
      * Add presumptive Apple Silicon support
      
      * Add arm64 iphonesimulator target
      
      * Fix xcframework build
      
      * Working on arm64 iOS simulator
      
      * Support 2.7 (replace run with check_output)
      
      * Correctly check output of uname_m against arch
      
      * Clean up
      
      * Use lipo for intermediate frameworks, add python script
      
      Remove unneeded __init__.py
      
      * Simplify python xcframework build script
      
      * Add --only-64-bit flag
      
      * Add --framework-name flag
      
      * Document
      
      * Commit to f-strings, improve console output
      
      * Add i386 to iphonesimulator platform in xcframework generator
      
      * Enable objc for non-Catalyst frameworks
      
      * Fix xcframework builder for paths with spaces
      
      * Use arch when specifying Catalyst build platform in build command
      
      * Fix incorrect settings for framework_name argparse configuration
      
      * Prefer underscores instead of hyphens in new flags
      
      * Move Catalyst flags to where they'll actually get used
      
      * Use --without=objc on Catalyst target for now
      
      * Remove get_or_create_folder and simplify logic
      
      * Remove unused import
      
      * Tighten up help text
      
      * Document
      
      * Move common functions into cv_build_utils
      
      * Improve documentation
      
      * Remove old build script
      
      * Add readme
      
      * Check for required CMake and Xcode versions
      
      * Clean up TODOs and re-enable `copy_samples()`
      
      Remove TODO
      
      Fixup
      
      * Add missing print_function import
      
      * Clarify CMake dependency documentation
      
      * Revert python2 change in gen_objc
      
      * Remove unnecessary builtins imports
      
      * Remove trailing whitespace
      
      * Avoid building Catalyst unless specified
      
      This makes Catalyst support a non-breaking change, though defaults should be specified when a breaking change is possible.
      
      * Prevent lipoing for the same archs on different platforms before build
      
      * Rename build-xcframework.py to build_xcframework.py
      
      * Check for duplicate archs more carefully
      
      * Prevent sample copying error when directory already exists
      
      This can happen when building multiple architectures for the same platform.
      
      * Simplify code for checking for default archs
      
      * Improve build_xcframework.py header text
      
      * Correctly resolve Python script paths
      
      * Parse only known args in ios/osx build_framework.py
      
      * Pass through uncaptured args in build_xcframework to osx/ios build
      
      * Fix typo
      
      * Fix typo
      
      * Fix unparameterized build path for intermediate frameworks
      
      * Fix dyanmic info.plist path for catalyst
      
      * Fix utf-8 Python 3 issue
      
      * Add dynamic flag to osx script
      
      * Rename platform to platforms, remove armv7s and i386
      
      * Fix creation of dynamic framework on maccatalyst and macos
      
      * Update platforms/apple/readme.md
      
      * Add `macos_archs` flag and deprecate `archs` flag
      
      * Allow specification of archs when generating xcframework from terminal
      
      * Change xcframework platform argument names to match archs flag names
      
      * Remove platforms as a concept and shadow archs flags from ios/osx .py
      
      * Improve documentation
      
      * Fix building of objc module on Catalyst, excluding Swift
      
      * Clean up build folder logic a bit
      
      * Fix framework_name flag
      
      * Drop passthrough_args, use unknown_args instead
      
      * minor: coding style changes
      Co-authored-by: NChris Ballinger <cballinger@rightpoint.com>
      85b0fb2a
  26. 20 11月, 2020 1 次提交
  27. 18 11月, 2020 1 次提交
  28. 15 11月, 2020 1 次提交
  29. 16 10月, 2020 1 次提交
  30. 15 10月, 2020 1 次提交
    • M
      Merge pull request #18547 from mtfrctl:objc-conversions-macosx · 7de18911
      mtfrctl 提交于
      Mat conversions for macOS/AppKit
      
      * Extract CoreGraphics conversion logics from ios_conversions.mm to apple_conversions.h, apple_conversions. Add macosx_conversions.mm
      
      * Add macosx.h
      
      * Add Mat+Conversions.h and Mat+Conversions.mm
      
      * Delete duplicated declaration from apple_conversion.mm
      
      * Use short license header
      
      * Add compile guard
      
      * Delete unused imports
      
      * Move precomp.hpp import from header to implementation
      
      * Add macosx.h to skip headers
      
      * Fix compile guard condition
      
      * Use short license header
      
      * Remove commented out unused code
      7de18911
  31. 22 9月, 2020 1 次提交
  32. 13 9月, 2020 1 次提交
  33. 03 9月, 2020 2 次提交
  34. 27 8月, 2020 1 次提交
  35. 31 7月, 2020 1 次提交
  36. 06 7月, 2020 2 次提交
  37. 26 6月, 2020 1 次提交