| 30 | |
| 31 | namespace { |
| 32 | struct ComparePixels { |
| 33 | bool operator()(const Eigen::Array2i &lhs, const Eigen::Array2i &rhs) const { |
| 34 | return lhs.x() < rhs.x() || (lhs.x() == rhs.x() && lhs.y() < rhs.y()); |
| 35 | } |
| 36 | }; |
| 37 | constexpr int max_int = std::numeric_limits<int>::max(); |
| 38 | constexpr int min_int = std::numeric_limits<int>::min(); |
| 39 | } // namespace |
nothing calls this directly
no outgoing calls
no test coverage detected