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: 3 additions & 3 deletions Libraries/MIVisionX/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
3 changes: 3 additions & 0 deletions Libraries/MIVisionX/canny/README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion Libraries/MIVisionX/opencv_orb/README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
Loading