Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

do you see the mismatch ?

 int dummy_query_data <--> uchar(CV_8UC1)

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] = ...

it's a type mismatch, it should be uchar instead of int as in:

 uchar dummy_query_data[38] dummy_query_data[36] = ...

it's a type mismatch, it should be uchar instead of int as in:

 uchar dummy_query_data[36] dummy_query_data[4*9] = ...