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];
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];