1 | initial version |
Not sure if there's a single function to do it but you have access to the following variables in cv::Mat
data (raw data) rows cols elem_size (size in byte of each element)
So rowscolselem_size should give you to the total bytes to send.
2 | No.2 Revision |
Not sure if there's a single function to do it but you have access to the following variables in cv::Mat
So rowscolselem_size should give you to the total bytes to send.
3 | No.3 Revision |
Not sure if there's a single function to do it but you have access to the following variables in cv::Mat
So rowscolsrows * cols * elem_size should give you to the total bytes to send.