Returns whether a roi created interactively should have subpixel resolution, (if the roi type supports it), i.e., whether the magnification is high enough
()
| 2504 | /** Returns whether a roi created interactively should have subpixel resolution, |
| 2505 | * (if the roi type supports it), i.e., whether the magnification is high enough */ |
| 2506 | protected boolean magnificationForSubPixel() { |
| 2507 | return magnificationForSubPixel(getMagnification()); |
| 2508 | } |
| 2509 | |
| 2510 | protected static boolean magnificationForSubPixel(double magnification) { |
| 2511 | return magnification > 1.5; |
no test coverage detected