|
Hi,
i am using ImageJ as library and trying show histogram image. But without GUI, i need just BufferedImage.
This works, but shows GUI:
HistogramWindow hw = new HistogramWindow(imp);
g.drawImage(hw.getImagePlus().getBufferedImage(), 0, 20, this);
Is there any way how to get histogram as BufferedImage without showing GUI?
Thanks a lot.
|