From ba6eb8d95292f4631a3b8de09bfaa59e43c17226 Mon Sep 17 00:00:00 2001 From: adsha-quic Date: Wed, 16 Apr 2025 18:54:40 +0530 Subject: [PATCH] Merge pull request #27214 from CodeLinaro:fastcv_lib_hash_update Adding latest FastCV static libs updated libs PR: [opencv/opencv_3rdparty/pull/94](https://github.com/opencv/opencv_3rdparty/pull/94) ### 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 --- 3rdparty/fastcv/fastcv.cmake | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/3rdparty/fastcv/fastcv.cmake b/3rdparty/fastcv/fastcv.cmake index 5c81c11300..6fee4ce4ce 100644 --- a/3rdparty/fastcv/fastcv.cmake +++ b/3rdparty/fastcv/fastcv.cmake @@ -1,23 +1,23 @@ function(download_fastcv root_dir) # Commit SHA in the opencv_3rdparty repo - set(FASTCV_COMMIT "f4413cc2ab7233fdfc383a4cded402c072677fb0") + set(FASTCV_COMMIT "8d86e68dad8b80b8575a8d3cf401d3ee96c24148") # Define actual FastCV versions if(ANDROID) if(AARCH64) message(STATUS "Download FastCV for Android aarch64") - set(FCV_PACKAGE_NAME "fastcv_android_aarch64_2024_12_11.tgz") - set(FCV_PACKAGE_HASH "9dac41e86597305f846212dae31a4a88") + set(FCV_PACKAGE_NAME "fastcv_android_aarch64_2025_04_08.tgz") + set(FCV_PACKAGE_HASH "e028966a1d1b2f3f0bc5967d316e8b64") else() message(STATUS "Download FastCV for Android armv7") - set(FCV_PACKAGE_NAME "fastcv_android_arm32_2024_12_11.tgz") - set(FCV_PACKAGE_HASH "fe2d30334180b17e3031eee92aac43b6") + set(FCV_PACKAGE_NAME "fastcv_android_arm32_2025_04_08.tgz") + set(FCV_PACKAGE_HASH "6fc1e812a4b3ef392469d2283e037ffe") endif() elseif(UNIX AND NOT APPLE AND NOT IOS AND NOT XROS) if(AARCH64) - set(FCV_PACKAGE_NAME "fastcv_linux_aarch64_2025_02_12.tgz") - set(FCV_PACKAGE_HASH "33ac2a59cf3e7d6402eee2e010de1202") + set(FCV_PACKAGE_NAME "fastcv_linux_aarch64_2025_04_08.tgz") + set(FCV_PACKAGE_HASH "062a26639cd2788beee2e0dd8743d680") else() message("FastCV: fastcv lib for 32-bit Linux is not supported for now!") endif()