Xilinx / xfopencv

Other
321 stars 144 forks source link

How to declare a xf:Mat array #77

Open 3togo opened 4 years ago

3togo commented 4 years ago

Below is how a xf:Mat variable is declared xf::Mat<XF_8UC3, rows, cols, XF_NPPC1> abc(rows, cols);

To declare an array, the following will work but how to add back the (rows, cols) into the each elements of abcs? xf::Mat<XF_8UC3, rows, cols, XF_NPPC1> abcs[9];