| 173 | static const int INVALID = 99999; // used to specify unavail eye locations, etc |
| 174 | |
| 175 | template <typename T> bool Valid(const T x) |
| 176 | { |
| 177 | return x != INVALID && x != -INVALID; |
| 178 | } |
| 179 | |
| 180 | // For reference, the fields of an OpenCV Mat are as follows. |
| 181 | // See \OpenCV\build\include\opencv2\core\core.hpp for details. |
no outgoing calls
no test coverage detected