diff --git a/Libraries/MIVisionX/CMakeLists.txt b/Libraries/MIVisionX/CMakeLists.txt index 4b453b852..eb8ebb3e5 100644 --- a/Libraries/MIVisionX/CMakeLists.txt +++ b/Libraries/MIVisionX/CMakeLists.txt @@ -58,4 +58,8 @@ endif() add_subdirectory(canny) # Disable this test until Jira ticket ROCM-1771 is resolved #add_subdirectory(mv_objdetect) -add_subdirectory(opencv_orb) + +# OpenCV support will be removed in future releases +# this example will only work on ubuntu 22.04 with MIVisionX built from source with OpenCV support +# see https://github.com/ROCm/MIVisionX/pull/1575 +# add_subdirectory(opencv_orb) diff --git a/Libraries/MIVisionX/Makefile b/Libraries/MIVisionX/Makefile index a71666407..127284ef8 100644 --- a/Libraries/MIVisionX/Makefile +++ b/Libraries/MIVisionX/Makefile @@ -22,8 +22,8 @@ EXAMPLES := \ canny \ - mv_objdetect \ - opencv_orb + mv_objdetect +# opencv_orb all: $(EXAMPLES) diff --git a/Libraries/MIVisionX/opencv_orb/README.md b/Libraries/MIVisionX/opencv_orb/README.md index 108ada727..b70b51ce9 100644 --- a/Libraries/MIVisionX/opencv_orb/README.md +++ b/Libraries/MIVisionX/opencv_orb/README.md @@ -1,5 +1,8 @@ # MIVisionX ORB Feature Detection +> [!WARNING] +> This example is deprecated. OpenCV support from MIVisionX will be removed in future releases, this example will only work on Ubuntu 22.04 with MIVisionX built from source with OpenCV support. For more details on how to build MIVisionX, please see https://github.com/ROCm/MIVisionX andWARNING https://github.com/ROCm/MIVisionX/pull/1575 + ## Description This example demonstrates ORB (Oriented FAST and Rotated BRIEF) feature detection using OpenVX with OpenCV extensions. The example processes images or live camera feeds to detect and extract keypoint features, which are useful for object recognition, image matching, and tracking applications.