Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
Norris Lin
Published © GPL3+

Build and Install OpenCV in Vitis HLS 2022.2

This article introduces how to install OpenCV in Vitis HLS 2022.2 and successfully run examples from the Vitis Vision Library.

BeginnerFull instructions provided2 hours851
Build and Install OpenCV in Vitis HLS 2022.2

Things used in this project

Software apps and online services

OpenCV
OpenCV – Open Source Computer Vision Library OpenCV
MinGW
CMake
Vitis Vision Library
AMD-Xilinx - Vitis HLS

Story

Read more

Code

hls_sobel_axi_stream.cpp

C/C++
#include "hls_sobel_axi_stream.hpp"
#include "imgproc/xf_sobel.hpp"
#include "imgproc/xf_cvt_color.hpp"
#include "imgproc/xf_add_weighted.hpp"

void hls_sobel_axi_stream_top(
                hls::stream<ap_axiu<AXIS_W,1,1,1> >& _src,
                hls::stream<ap_axiu<AXIS_W,1,1,1> >& _dst,
                int rows,
                int cols) {

    #pragma HLS INTERFACE axis port=_src
    #pragma HLS INTERFACE axis port=_dst 
    #pragma HLS INTERFACE s_axilite port=rows           bundle=control
    #pragma HLS INTERFACE s_axilite port=cols           bundle=control
    #pragma HLS INTERFACE s_axilite port=return         bundle=control

    xf::cv::Mat<XF_8UC3, XF_HEIGHT, XF_WIDTH, XF_NPPC1> img_buf_0(rows, cols);
    xf::cv::Mat<XF_8UC1, XF_HEIGHT, XF_WIDTH, XF_NPPC1> img_buf_1(rows, cols);
    xf::cv::Mat<XF_8UC1, XF_HEIGHT, XF_WIDTH, XF_NPPC1> img_buf_1a(rows, cols);
    xf::cv::Mat<XF_8UC1, XF_HEIGHT, XF_WIDTH, XF_NPPC1> img_buf_1b(rows, cols);
    xf::cv::Mat<XF_8UC1, XF_HEIGHT, XF_WIDTH, XF_NPPC1> img_buf_2(rows, cols);
    xf::cv::Mat<XF_8UC3, XF_HEIGHT, XF_WIDTH, XF_NPPC1> img_buf_3(rows, cols);

    #pragma HLS dataflow

    xf::cv::AXIvideo2xfMat(_src, img_buf_0);
    xf::cv::bgr2gray<XF_8UC3, XF_8UC1, XF_HEIGHT, XF_WIDTH, XF_NPPC1>(img_buf_0, img_buf_1);
    xf::cv::Sobel<0, 3, XF_8UC1, XF_8UC1, XF_HEIGHT, XF_WIDTH, XF_NPPC1, false>(img_buf_1, img_buf_1a, img_buf_1b);
    xf::cv::addWeighted<XF_8UC1, XF_8UC1, XF_HEIGHT, XF_WIDTH, XF_NPPC1>(img_buf_1a, 0.5, img_buf_1b, 0.5, 0, img_buf_2);
    xf::cv::gray2bgr<XF_8UC1, XF_8UC3, XF_HEIGHT, XF_WIDTH, XF_NPPC1>(img_buf_2, img_buf_3);
    xf::cv::xfMat2AXIvideo(img_buf_3, _dst);

    return;
}

hls_sobel_axi_stream.hpp

C/C++
#include "hls_stream.h"
#include "common/xf_common.hpp"
#include "common/xf_utility.hpp"
#include "common/xf_infra.hpp"


/* config width and height */
#define XF_HEIGHT   1080
#define XF_WIDTH    1920
#define AXIS_W      24

void hls_sobel_axi_stream_top(
                hls::stream<ap_axiu<AXIS_W,1,1,1> >& _src,
                hls::stream<ap_axiu<AXIS_W,1,1,1> >& _dst,
                int rows,
                int cols);

hls_sobel_axi_stream_tb.cpp

C/C++
#include "hls_sobel_axi_stream.hpp"
#include "common/xf_headers.hpp"
#include "common/xf_axi.hpp"

using namespace std;

int main(int argc, char** argv) {
    if (argc != 2) {
        fprintf(stderr, "Invalid Number of Arguments!\nUsage: <executable> <image>\n");
        return -1;
    }

    cv::Mat img, diff;
    img = cv::imread(argv[1], 1);
    if (img.data == NULL) {
        fprintf(stderr, "Cannot open image at %s\n", argv[1]);
        return 0;
    }

    int rows = img.rows;
    int cols = img.cols;
    cv::Mat out_img(rows, cols, CV_8UC3);

    // convert input to axiStream
    hls::stream<ap_axiu<AXIS_W, 1, 1, 1> > _src;
    xf::cv::cvMat2AXIvideoxf<XF_NPPC1, AXIS_W>(img, _src);

    // output axiStream
    hls::stream<ap_axiu<AXIS_W, 1, 1, 1> > _dst;

    // Launch the kernel
    hls_sobel_axi_stream_top(_src, _dst, rows, cols);

    xf::cv::AXIvideo2cvMatxf<XF_NPPC1>(_dst, out_img);

    // Write output image
    cv::imwrite("output.png", out_img);

    return 0;
}

Credits

Norris Lin
6 projects • 5 followers
An R&D professional passionate about FPGA development, skilled in system and IP integration.
Contact

Comments

Please log in or sign up to comment.