From aae568e33abb9cd865bdf793df630067698e46db Mon Sep 17 00:00:00 2001 From: zichguan-amd Date: Thu, 19 Mar 2026 16:22:25 -0400 Subject: [PATCH] Disabled MIVisionX canny example Signed-off-by: zichguan-amd --- Libraries/MIVisionX/CMakeLists.txt | 6 +++--- Libraries/MIVisionX/canny/README.md | 3 +++ Libraries/MIVisionX/opencv_orb/README.md | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Libraries/MIVisionX/CMakeLists.txt b/Libraries/MIVisionX/CMakeLists.txt index d3fd477a5..a3447ede0 100644 --- a/Libraries/MIVisionX/CMakeLists.txt +++ b/Libraries/MIVisionX/CMakeLists.txt @@ -55,11 +55,11 @@ if(NOT OpenVX_LIBRARY) return() endif() -add_subdirectory(canny) # Disable this test until Jira ticket ROCM-1771 is resolved #add_subdirectory(mv_objdetect) -# 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 +# MIVisionX will stop being shipped with OpenCV support in future releases +# examples using MIVisionX's OpenCV extension will need MIVisionX built with OpenCV support # see https://github.com/ROCm/MIVisionX/pull/1575 +# add_subdirectory(canny) # add_subdirectory(opencv_orb) diff --git a/Libraries/MIVisionX/canny/README.md b/Libraries/MIVisionX/canny/README.md index 232dc1b2d..5b06baaca 100644 --- a/Libraries/MIVisionX/canny/README.md +++ b/Libraries/MIVisionX/canny/README.md @@ -1,5 +1,8 @@ # MIVisionX Canny Edge Detection +> [!WARNING] +> MIVisionX will stop being shipped with OpenCV support in future releases, this example requires MIVisionX built with OpenCV support. For more details on how to build MIVisionX, please see https://github.com/ROCm/MIVisionX and https://github.com/ROCm/MIVisionX/pull/1575 + ## Description This example demonstrates Canny edge detection using the OpenVX framework. The example processes images or live camera feeds to detect edges using the Canny algorithm, which involves color space conversion, channel extraction, and edge detection with configurable thresholds. diff --git a/Libraries/MIVisionX/opencv_orb/README.md b/Libraries/MIVisionX/opencv_orb/README.md index 7b419c363..0d1e2c9d2 100644 --- a/Libraries/MIVisionX/opencv_orb/README.md +++ b/Libraries/MIVisionX/opencv_orb/README.md @@ -1,7 +1,7 @@ # 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 and https://github.com/ROCm/MIVisionX/pull/1575 +> MIVisionX will stop being shipped with OpenCV support in future releases, this example requires MIVisionX built with OpenCV support. For more details on how to build MIVisionX, please see https://github.com/ROCm/MIVisionX and https://github.com/ROCm/MIVisionX/pull/1575 ## Description