Skip to content

Commit 543939b

Browse files
authored
Disable MIVisionX OpenCV example (#404)
Signed-off-by: zichguan-amd <zichuan.guan@amd.com>
1 parent 46c13b6 commit 543939b

3 files changed

Lines changed: 10 additions & 3 deletions

File tree

Libraries/MIVisionX/CMakeLists.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,8 @@ endif()
5858
add_subdirectory(canny)
5959
# Disable this test until Jira ticket ROCM-1771 is resolved
6060
#add_subdirectory(mv_objdetect)
61-
add_subdirectory(opencv_orb)
61+
62+
# OpenCV support will be removed in future releases
63+
# this example will only work on ubuntu 22.04 with MIVisionX built from source with OpenCV support
64+
# see https://github.com/ROCm/MIVisionX/pull/1575
65+
# add_subdirectory(opencv_orb)

Libraries/MIVisionX/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222

2323
EXAMPLES := \
2424
canny \
25-
mv_objdetect \
26-
opencv_orb
25+
mv_objdetect
26+
# opencv_orb
2727

2828
all: $(EXAMPLES)
2929

Libraries/MIVisionX/opencv_orb/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# MIVisionX ORB Feature Detection
22

3+
> [!WARNING]
4+
> 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
5+
36
## Description
47

58
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.

0 commit comments

Comments
 (0)