| 272 | { return countNonZero_(src, len); } |
| 273 | |
| 274 | static int countNonZero64f( const double* src, int len ) |
| 275 | { return countNonZero_(src, len); } |
| 276 | |
| 277 | typedef int (*CountNonZeroFunc)(const uchar*, int); |
| 278 |
nothing calls this directly
no test coverage detected