Plots a histogram using the specified title and number of bins. Currently, the number of bins must be 256 expect for 32 bit images.
(String title, ImagePlus imp, int bins)
| 57 | /** Plots a histogram using the specified title and number of bins. |
| 58 | Currently, the number of bins must be 256 expect for 32 bit images. */ |
| 59 | public void draw(String title, ImagePlus imp, int bins) { |
| 60 | draw(imp, bins, 0.0, 0.0, 0); |
| 61 | } |
| 62 | |
| 63 | /** Plots a histogram using the specified title, number of bins and histogram range. |
| 64 | Currently, the number of bins must be 256 and the histogram range range must be |
no test coverage detected