1 | initial version |
do you see the mismatch ?
int dummy_query_data <--> uchar(CV_8UC1)
2 | No.2 Revision |
do you see the mismatch ?it's a type mismatch, it should be uchar instead of int as in:
int dummy_query_data <--> uchar(CV_8UC1)
uchar dummy_query_data[38] = ...
3 | No.3 Revision |
it's a type mismatch, it should be uchar instead of int as in:
uchar dummy_query_data[38] dummy_query_data[36] = ...
4 | No.4 Revision |
it's a type mismatch, it should be uchar instead of int as in:
uchar dummy_query_data[36] dummy_query_data[4*9] = ...