int countNaN(cv::InputArray src)
NaNの数を返します.
CV_32FかCV_64F専用です.
- OpenCV
int countInf(cv::InputArray src)
Infの数を返します.
CV_32FかCV_64F専用です.
- OpenCV
int countDenormalizedNumber(cv::InputArray src)
非正規化数(subnormal number or denomlized number)の数を返します.
CV_32FかCV_64F専用です.
非正規化数が浮動小数点に入っていると演算が非常に重たくなります.
- OpenCV
double countDenormalizedNumberRatio(cv::InputArray src)
非正規化数(subnormal number or denomlized number)が全体に占める割合(0~1)を返します.
CV_32FかCV_64F専用です.
- OpenCV