| 40 | |
| 41 | template <typename PointT = PointF> |
| 42 | Quadrilateral<PointT> Rectangle(int x0, int x1, int y0, int y1, typename PointT::value_t o = 0.5) |
| 43 | { |
| 44 | return {PointT{x0 + o, y0 + o}, {x1 + o, y0 + o}, {x1 + o, y1 + o}, {x0 + o, y1 + o}}; |
| 45 | } |
| 46 | |
| 47 | class ROI |
| 48 | { |
no outgoing calls
no test coverage detected