Draws the image. If there is an ROI, its outline is also displayed. Does nothing if there is no window associated with this image (i.e. show() has not been called).
()
| 350 | is no window associated with this image (i.e. show() |
| 351 | has not been called).*/ |
| 352 | public void draw() { |
| 353 | if (win!=null) |
| 354 | win.getCanvas().repaint(); |
| 355 | } |
| 356 | |
| 357 | /** Draws image and roi outline using a clip rect. */ |
| 358 | public void draw(int x, int y, int width, int height){ |
no test coverage detected