Creates a rectangular ROI.
(int x, int y, int width, int height)
| 164 | |
| 165 | /** Creates a rectangular ROI. */ |
| 166 | public Roi(int x, int y, int width, int height) { |
| 167 | this(x, y, width, height, 0); |
| 168 | } |
| 169 | |
| 170 | /** Creates a rectangular ROI using double arguments. */ |
| 171 | public Roi(double x, double y, double width, double height) { |
nothing calls this directly
no test coverage detected