Equivalent to clicking on the current image at (x,y) with the wand tool. Returns the number of points in the resulting ROI.
(int x, int y)
| 1787 | /** Equivalent to clicking on the current image at (x,y) with the |
| 1788 | wand tool. Returns the number of points in the resulting ROI. */ |
| 1789 | public static int doWand(int x, int y) { |
| 1790 | return doWand(getImage(), x, y, 0, null); |
| 1791 | } |
| 1792 | |
| 1793 | /** Traces the boundary of the area with pixel values within |
| 1794 | * 'tolerance' of the value of the pixel at the starting location. |
no test coverage detected