Merge pull request #27525 from CodeLinaro:apreetam_7thPost

Update FastCV lib hash for Linux and Android

Updated libs PR [opencv/opencv_3rdparty#101](https://github.com/opencv/opencv_3rdparty/pull/101)
### 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
This commit is contained in:
Aakash Preetam 2025-07-16 12:31:00 +05:30 committed by GitHub
parent f734de08ca
commit 8366a2e506
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,23 +1,23 @@
function(download_fastcv root_dir) function(download_fastcv root_dir)
# Commit SHA in the opencv_3rdparty repo # Commit SHA in the opencv_3rdparty repo
set(FASTCV_COMMIT "2265e79b3b9a8512a9c615b8c4d0244e88f45a9d") set(FASTCV_COMMIT "9e8d42b6d7e769548d70b2e5674e263b056de8b4")
# Define actual FastCV versions # Define actual FastCV versions
if(ANDROID) if(ANDROID)
if(AARCH64) if(AARCH64)
message(STATUS "Download FastCV for Android aarch64") message(STATUS "Download FastCV for Android aarch64")
set(FCV_PACKAGE_NAME "fastcv_android_aarch64_2025_04_29.tgz") set(FCV_PACKAGE_NAME "fastcv_android_aarch64_2025_07_09.tgz")
set(FCV_PACKAGE_HASH "d9172a9a3e5d92d080a4192cc5691001") set(FCV_PACKAGE_HASH "8b9497858cf3c3502a0be4369d06ebf8")
else() else()
message(STATUS "Download FastCV for Android armv7") message(STATUS "Download FastCV for Android armv7")
set(FCV_PACKAGE_NAME "fastcv_android_arm32_2025_04_29.tgz") set(FCV_PACKAGE_NAME "fastcv_android_arm32_2025_07_09.tgz")
set(FCV_PACKAGE_HASH "246b5253233391cd2c74d01d49aee9c3") set(FCV_PACKAGE_HASH "e0e6009c9f2f2b96140cd6a639c7383f")
endif() endif()
elseif(UNIX AND NOT APPLE AND NOT IOS AND NOT XROS) elseif(UNIX AND NOT APPLE AND NOT IOS AND NOT XROS)
if(AARCH64) if(AARCH64)
set(FCV_PACKAGE_NAME "fastcv_linux_aarch64_2025_05_29.tgz") set(FCV_PACKAGE_NAME "fastcv_linux_aarch64_2025_07_09.tgz")
set(FCV_PACKAGE_HASH "decd490524f786e103125b8b948151f3") set(FCV_PACKAGE_HASH "05e254e0eb3c13fa23eb7213f0fe6d82")
else() else()
message("FastCV: fastcv lib for 32-bit Linux is not supported for now!") message("FastCV: fastcv lib for 32-bit Linux is not supported for now!")
endif() endif()