Returns the length of this line in pixels.
()
| 452 | |
| 453 | /** Returns the length of this line in pixels. */ |
| 454 | public double getRawLength() { |
| 455 | return Math.sqrt(sqr(x2d-x1d)+sqr(y2d-y1d)); |
| 456 | } |
| 457 | |
| 458 | /** Returns the pixel values along this line. |
| 459 | * The line roi must have an associated ImagePlus. |
no test coverage detected