i just found, that CV_32S is not supported as input type for cv::reduce().
is there any valid reason for that ? anything else is supported.
( yes, i've seen this )
1 | initial version |
i just found, that CV_32S is not supported as input type for cv::reduce().
is there any valid reason for that ? anything else is supported.
( yes, i've seen this )
2 | No.2 Revision |
i just found, that CV_32S is not supported as input type for cv::reduce().
is there any valid reason for that ? anything else is supported.
( yes, i've seen this )
cv::Mat src = cv::Mat::eye(4,4, CV_32S);
std::vector<int> dst;
cv::reduce(src , dst , 0 , REDUCE_SUM );
OpenCV Error: Unsupported format or combination of formats (Unsupported combinat ion of input and output array formats) in unknown function, file ......\module s\core\src\matrix.cpp, line 2435
there is just no case for it in matrix.cpp, 2253 and below