- Return 1 if s is positive but not 0
| 164 | |
| 165 | //- Return 1 if s is positive but not 0 |
| 166 | inline Scalar pos(const Scalar s) |
| 167 | { |
| 168 | return (s > 0)? 1: 0; |
| 169 | } |
| 170 | |
| 171 | |
| 172 | //- Return 1 if s is positive or 0 |
no outgoing calls
no test coverage detected