small error in comment
The code is currently:
//- Return 1 if s is greater than zero, otherwise 1
inline Scalar pos(const Scalar s)
{
return (s > 0)? 1: 0;
}
but surely the comment should actually say otherwise 0
?
The code is currently:
//- Return 1 if s is greater than zero, otherwise 1
inline Scalar pos(const Scalar s)
{
return (s > 0)? 1: 0;
}
but surely the comment should actually say otherwise 0
?