JFreeChart生成的图像直方图

发布于 2024-12-11 11:05:23 字数 1236 浏览 0 评论 0原文

我想显示图像颜色通道的直方图。 起初,我对像素的读取如下所示:

   for(int i=0; i<width; i++)
        for(int j=0; j<height; j++) {
          data=writeableRaster.getDataElements(i, j, null);
          red=colorModel.getRed(data);
          green=colorModel.getGreen(data);
          blue=colorModel.getBlue(data);
          rgb=(red+green+blue)/3;
          ++redL[red];
          ++greenL[green];
          ++blueL[blue];
          ++rgbL[rgb];
        }
    }

我还有其他方法用于使用给定通道颜色表创建图表:

        int number = channelHistogram.length;
        HistogramDataset dataset = new HistogramDataset();
        dataset.setType(HistogramType.RELATIVE_FREQUENCY);
        dataset.addSeries("Hist",channelHistogram,number);
        String plotTitle = "Hist"; 
        String xaxis = "number";
        String yaxis = "value"; 
        PlotOrientation orientation = PlotOrientation.VERTICAL; 
        boolean show = false; 
        boolean toolTips = false;
        boolean urls = false; 
        JFreeChart chart = ChartFactory.createHistogram( plotTitle, xaxis, yaxis, 
                 dataset, orientation, show, toolTips, urls);

但图表显示错误。这意味着在 Y 轴上有“低”值(从 ~ 0 - 0.09),在 X 轴上没有范围 0 - 255 的值。 有什么帮助吗?

I want to display histogram of image color channels.
At first my reading of pixels looks like:

   for(int i=0; i<width; i++)
        for(int j=0; j<height; j++) {
          data=writeableRaster.getDataElements(i, j, null);
          red=colorModel.getRed(data);
          green=colorModel.getGreen(data);
          blue=colorModel.getBlue(data);
          rgb=(red+green+blue)/3;
          ++redL[red];
          ++greenL[green];
          ++blueL[blue];
          ++rgbL[rgb];
        }
    }

I also have additional method for creating chart with given channel colors table:

        int number = channelHistogram.length;
        HistogramDataset dataset = new HistogramDataset();
        dataset.setType(HistogramType.RELATIVE_FREQUENCY);
        dataset.addSeries("Hist",channelHistogram,number);
        String plotTitle = "Hist"; 
        String xaxis = "number";
        String yaxis = "value"; 
        PlotOrientation orientation = PlotOrientation.VERTICAL; 
        boolean show = false; 
        boolean toolTips = false;
        boolean urls = false; 
        JFreeChart chart = ChartFactory.createHistogram( plotTitle, xaxis, yaxis, 
                 dataset, orientation, show, toolTips, urls);

But chart is wrong displayed. It means at Y axis there are "low" values (from ~ 0 - 0.09) and at X axis there aren't values from scope 0 - 255.
Any help?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

江城子 2024-12-18 11:05:23
dataset.setType(HistogramType.RELATIVE_FREQUENCY);

您可以尝试在这里设置不同的选项,看看是否有帮助?另外,如果您可以显示 channelHistogram 字段包含的内容,这可能有助于调试。

dataset.setType(HistogramType.RELATIVE_FREQUENCY);

Can you try setting different options here and see if it helps? Also if you can show what channelHistogram field contains that may be helpful to debug.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文