(ImageProcessor ip, int x, int y, float[] data, int length)
| 523 | } |
| 524 | |
| 525 | public void putColumn(ImageProcessor ip, int x, int y, float[] data, int length) { |
| 526 | if (rgb) { |
| 527 | for (int i=0; i<length; i++) |
| 528 | ip.putPixel(x, y++, Float.floatToIntBits(data[i])); |
| 529 | } else { |
| 530 | for (int i=0; i<length; i++) |
| 531 | ip.setf(x, y++, data[i]); |
| 532 | } |
| 533 | } |
| 534 | |
| 535 | float[] getIrregularProfile(Roi roi, ImageProcessor ip) { |
| 536 | if (x==null) |
no test coverage detected