From d97e926f70dda630c1ed1fc85cc6d8788d7fe7fc Mon Sep 17 00:00:00 2001 From: Aakash Preetam Date: Fri, 6 Jun 2025 14:57:13 +0530 Subject: [PATCH] Merge pull request #27403 from CodeLinaro:apreetam_6thPost FastCV latest libs hash update #27403 Update hash for the fastcv libs for Linux Updated libs PR: https://github.com/opencv/opencv_3rdparty/pull/97 ### 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/3rdparty/fastcv/fastcv.cmake b/3rdparty/fastcv/fastcv.cmake index 8a82995bf3..215c73af16 100644 --- a/3rdparty/fastcv/fastcv.cmake +++ b/3rdparty/fastcv/fastcv.cmake @@ -1,7 +1,7 @@ function(download_fastcv root_dir) # Commit SHA in the opencv_3rdparty repo - set(FASTCV_COMMIT "abe340d0fb7f19fa9315080e3c8616642e98a296") + set(FASTCV_COMMIT "2265e79b3b9a8512a9c615b8c4d0244e88f45a9d") # Define actual FastCV versions if(ANDROID) @@ -16,8 +16,8 @@ function(download_fastcv root_dir) endif() elseif(UNIX AND NOT APPLE AND NOT IOS AND NOT XROS) if(AARCH64) - set(FCV_PACKAGE_NAME "fastcv_linux_aarch64_2025_04_29.tgz") - set(FCV_PACKAGE_HASH "e2ce60e25c8e4113a7af2bd243118f4c") + set(FCV_PACKAGE_NAME "fastcv_linux_aarch64_2025_05_29.tgz") + set(FCV_PACKAGE_HASH "decd490524f786e103125b8b948151f3") else() message("FastCV: fastcv lib for 32-bit Linux is not supported for now!") endif()