Skip to content

Commit f7bc38e

Browse files
committed
Fixed FastCV module dependencies and CI in 5.x
1 parent f5c95be commit f7bc38e

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/PR-5.x.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: opencv/ci-gha-workflow/.github/workflows/OCV-Contrib-PR-5.x-ARM64.yaml@main
1616

1717
Ubuntu2004-ARM64-FastCV:
18-
uses: opencv/ci-gha-workflow/.github/workflows/OCV-Contrib-PR-4.x-ARM64-FastCV.yaml@main
18+
uses: opencv/ci-gha-workflow/.github/workflows/OCV-Contrib-PR-5.x-ARM64-FastCV.yaml@main
1919

2020
Ubuntu2004-x64-CUDA:
2121
uses: opencv/ci-gha-workflow/.github/workflows/OCV-Contrib-PR-5.x-U20-Cuda.yaml@main

modules/fastcv/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
message(STATUS "HAVE_FASTCV status ${HAVE_FASTCV}")
12
if(HAVE_FASTCV)
23
set(the_description "Qualcomm FastCV accelerated functions")
3-
ocv_define_module(fastcv opencv_core opencv_imgproc opencv_features2d opencv_video WRAP python java)
4+
ocv_define_module(fastcv opencv_core opencv_imgproc opencv_features opencv_video WRAP python java)
45
ocv_module_include_directories(
56
"${CMAKE_CURRENT_SOURCE_DIR}/include"
67
${FastCV_INCLUDE_PATH})

modules/fastcv/perf/perf_precomp.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#define __FASTCV_EXT_PERF_PRECOMP_HPP__
88

99
#include <opencv2/ts.hpp>
10-
#include <opencv2/features2d.hpp>
10+
#include <opencv2/features.hpp>
1111
#include <opencv2/fastcv.hpp>
1212

1313
namespace opencv_test {

modules/fastcv/test/test_precomp.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
#include <opencv2/ts.hpp>
77
#include <opencv2/core/affine.hpp>
8-
#include <opencv2/features2d.hpp>
8+
#include <opencv2/features.hpp>
99
#include <opencv2/video.hpp>
1010

1111
#include <opencv2/fastcv.hpp>

0 commit comments

Comments
 (0)