1 | initial version |
kernelxx.ptr<float>(0); //will give you the pointer to the 1st row.
(the underlying data buffer is still uchar*)
2 | No.2 Revision |
float *fp = kernelxx.ptr<float>(0); //will give you the pointer to the 1st row.
(the underlying data buffer is still uchar*)
3 | No.3 Revision |
no worries, that's ok and expected.
float *fp = kernelxx.ptr<float>(0); //will give you the pointer to the 1st row.
(the underlying data buffer is still uchar*)
4 | No.4 Revision |
no worries, that's ok and expected.your Mat creation is correct.
float *fp = kernelxx.ptr<float>(0); //will give you the pointer to the 1st row.
(the underlying data buffer is still uchar*)