Closed SarahWicker closed 5 years ago
Hello @SarahWicker ,
This is a reported bug in 2018.3 release, and was corrected through the following commit: https://github.com/Xilinx/xfopencv/commit/1cb0cf1f7ba2f4764572d1f9d26c6ff847c9f5ff#diff-42a43c4603694dd5c47cf1283374239f
You can find the corrected files here : https://github.com/Xilinx/xfopencv/tree/1cb0cf1f7ba2f4764572d1f9d26c6ff847c9f5ff/HLS_Use_Model/AXI_Sample
oh thanks i couldn't find the correct files. Just i saw that the #include "common/xf_axi.h" was still missing in the xf_headers.h, once this corrected and the flag added to the simulation and co-simulation it worked well. Thank you a lot for your help
Windows 10 Vivado 2018.3 Xfopencv 2018.3_release (tag)
I try using the hls bat and script.tcl to build the ip of dilation (HLS_Use_Model/AXI_Sample) i made the changes to add the xf_axi.h at the end of the xf_headers.h to correct that cvMat2AXIvideoxf(in_img, _src); and AXIvideo2cvMatxf(_dst, in_img1); weren't recognize.
Also in script.tcl i change the taget device to fit the ultra96 board, following this description: https://www.hackster.io/dhq/accelerating-image-processing-with-ultra96-caebe6
but now : ip_accel_app(_src, _dst, height, width); isn't recognize at least the error is:
After looking thought the source files i saw that ip_accel_app was defined twice, inside xf_dilation_config.h :
void ip_accel_app(hls::stream< ap_axiu<8,1,1,1> >& _src,hls::stream< ap_axiu<8,1,1,1> >& _dst,int height,int width);
and inside xf_ip_accel_app.cpp:
But we are not calling for this last file yet so i don't understand why it gets confused… Doesn't anyone has an idea or already encounter this issue before?
Thank You a lot for your help :) Sarah