mirror of
https://github.com/opencv/opencv.git
synced 2024-12-15 01:39:10 +08:00
5f1b05af0e
Added Fastcv HAL changes in the 3rdparty folder. Code Changes includes HAL code , Fastcv libs and Headers Change-Id: I2f0ddb1f57515c82ae86ba8c2a82965b1a9626ec Requires binaries from https://github.com/opencv/opencv_3rdparty/pull/86. Related patch to opencv_contrib: https://github.com/opencv/opencv_contrib/pull/3811 ### Pull Request Readiness Checklist See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request - [x] I agree to contribute to the project under Apache 2 License. - [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV - [ ] The PR is proposed to the proper branch - [ ] There is a reference to the original bug report and related work - [ ] There is accuracy test, performance test and test data in opencv_extra repository, if applicable Patch to opencv_extra has the same branch name. - [ ] The feature is well documented and sample code can be built with the project CMake
44 lines
1.5 KiB
CMake
44 lines
1.5 KiB
CMake
function(download_fastcv root_dir)
|
|
|
|
# Commit SHA in the opencv_3rdparty repo
|
|
set(FASTCV_COMMIT "b8f0d48fa9dbebb0237d3e0abd206f9930c89db6")
|
|
|
|
# Define actual FastCV versions
|
|
if(ANDROID)
|
|
if(AARCH64)
|
|
message(STATUS "Download FastCV for Android aarch64")
|
|
set(FCV_PACKAGE_NAME "fastcv_android_aarch64_2024_10_24.tgz")
|
|
set(FCV_PACKAGE_HASH "14486af00dc0282dac591dc9ccdd957e")
|
|
else()
|
|
message(STATUS "Download FastCV for Android armv7")
|
|
set(FCV_PACKAGE_NAME "fastcv_android_arm32_2024_10_24.tgz")
|
|
set(FCV_PACKAGE_HASH "b5afadd5a5b55f8f6c2e7361f225fa21")
|
|
endif()
|
|
elseif(UNIX AND NOT APPLE AND NOT IOS AND NOT XROS)
|
|
if(AARCH64)
|
|
set(FCV_PACKAGE_NAME "fastcv_linux_aarch64_2024_10_24.tgz")
|
|
set(FCV_PACKAGE_HASH "d15c7b77f2d3577ba46bd94e6cf15230")
|
|
else()
|
|
message("FastCV: fastcv lib for 32-bit Linux is not supported for now!")
|
|
endif()
|
|
endif(ANDROID)
|
|
|
|
# Download Package
|
|
set(OPENCV_FASTCV_URL "https://raw.githubusercontent.com/opencv/opencv_3rdparty/${FASTCV_COMMIT}/fastcv/")
|
|
|
|
ocv_download( FILENAME ${FCV_PACKAGE_NAME}
|
|
HASH ${FCV_PACKAGE_HASH}
|
|
URL ${OPENCV_FASTCV_URL}
|
|
DESTINATION_DIR ${root_dir}
|
|
ID FASTCV
|
|
STATUS res
|
|
UNPACK
|
|
RELATIVE_URL)
|
|
if(res)
|
|
set(HAVE_FASTCV TRUE CACHE BOOL "FastCV status")
|
|
else()
|
|
message(WARNING "FastCV: package download failed!")
|
|
endif()
|
|
|
|
endfunction()
|