Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Libraries/MIVisionX/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
4 changes: 2 additions & 2 deletions Libraries/MIVisionX/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@

EXAMPLES := \
canny \
mv_objdetect \
opencv_orb
mv_objdetect
# opencv_orb

all: $(EXAMPLES)

Expand Down
3 changes: 3 additions & 0 deletions Libraries/MIVisionX/opencv_orb/README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
Loading