I made a function in c++ that I named it apply_morph_find_target_func
.
In this function I want to get two values and return one Mat and one dynamic array.
The name of the dynamic array is target_property
.
The size of target_property
would be n*6
, where n
is dynamic:
Here is what I have defined for my function :
Mat apply_morph_find_target_func(Mat result_first, Mat im) {
...
}
what should I do? regards