CoreFlow 1.0.0
A modern orchestration and execution runtime
Loading...
Searching...
No Matches
optical_flow Directory Reference

Directories

 source
 

Detailed Description

In this sample we will create an OpenVX graph to run Optical Flow on a video/live. This sample application uses OpenCV to decode input video and display the output.

Prerequisites

Steps to run the Optical Flow sample

Build OpenVX on Linux
* Git Clone project
git clone https://github.com/ROCm/MIVisionX.git
* Use CMake to build
mkdir build && cd build
cmake ../MIVisionX
make -j8
sudo make install
export OPENVX_DIR=/opt/rocm/
mkdir opticalFlow-build && cd opticalFlow-build
cmake -DOPENVX_INCLUDES=$OPENVX_DIR/include/mivisionx -DOPENVX_LIBRARIES=$OPENVX_DIR/lib/libopenvx.so ../optical_flow
make