JavaCV创建和绘制灰度一个通道直方图

时间:2013-02-26 19:04:25

标签: opencv histogram javacv grayscale

我是这个网站的新手,如果我的帖子有任何错误,请告诉我。 我有一些关于在javacv中计算和绘制直方图的问题。以下是根据我搜索过的一些信息编写的代码:

我得到这样的错误: OpenCV错误:未知函数中的一个参数'值超出范围(索引超出范围),文件...... \ src \ opencv \ modules \ core \ src \ array.cpp,第1691行

private CvHistogram getHistogram(IplImage image) {//get histogram data, input has been converted to grayscale beforehand 


    IplImage[] hsvImage1 = {image};
    //bins and value-range
    int numberOfBins = 256;
    float minRange = 0.0f;
    float maxRange = 255.0f;
    // Allocate histogram object
    int dims = 1;
    int[] sizes = new int[]{numberOfBins};
    int histType = CV_HIST_ARRAY;
    float[] minMax = new float[]{minRange, maxRange};
    float[][] ranges = new float[][]{minMax};
    CvHistogram hist = cvCreateHist(dims, sizes, histType, ranges, 1); 
    cvCalcHist(hsvImage1, hist, 0, null);
    return hist;
}

private IplImage DrawHistogram(CvHistogram hist, IplImage image) {//draw histogram
    int scaleX = 1;
    int scaleY = 1;
    int i;
    float[] max_value = {0};
    int[] int_value = {0};
    cvGetMinMaxHistValue(hist, max_value, max_value, int_value, int_value);//get min and max value for histogram

    IplImage imgHist = cvCreateImage(cvSize(256, image.height() ),IPL_DEPTH_8U,1);//create image to store histogram
    cvZero(imgHist);
    CvPoint pts = new CvPoint(5);

    for (i = 0; i < 256; i++) {//draw the histogram 
        float value = opencv_legacy.cvQueryHistValue_1D(hist, i);
        float nextValue = opencv_legacy.cvQueryHistValue_1D(hist, i + 1);

        pts.position(0).x(i * scaleX).y(image.height() * scaleY);
        pts.position(1).x(i * scaleX + scaleX).y(image.height() * scaleY);
        pts.position(2).x(i * scaleX + scaleX).y((int)((image.height() - nextValue * image.height() /max_value[0]) * scaleY));
        pts.position(3).x(i * scaleX).y((int)((image.height() - value * image.height() / max_value[0]) * scaleY));
        pts.position(4).x(i * scaleX).y(image.height() * scaleY);
        cvFillConvexPoly(imgHist, pts.position(0), 5, CvScalar.RED, CV_AA, 0);
    }
    return imgHist;
}

我已经尝试搜索我在底部提供的几个链接,但是,每个链接都使用不同的语言,因此我不确定我是否正确地将它们转换为java。说实话,我怀疑的事情很少,如果可以提供任何建议,将会很高兴,例如:

  1. float [] max_value = {0}; //我提到互联网,它帮助我在cvGetMinMaxHistValue()中获取语法错误,不确定它是否会导致逻辑错误

  2. pts.position(3).x(i * scaleX).y((int)((image.height() - value * image.height()/ max_value [0])* scaleY)) ; //我把int向下转换为pts将识别的类型,还有一件事是max_value [0]为0,想知道它是否会因为除法而导致逻辑错误

  3. 使用的链接:

2 个答案:

答案 0 :(得分:0)

//使用此功能 public CvHistogram getHistogram(IplImage image){//获取直方图数据,输入事先已转换为灰度

IplImageArray hsvImage1 = splitChannels(image);
//bins and value-range
int numberOfBins = 256;
float minRange = 0.0f;
float maxRange = 255.0f;
// Allocate histogram object
int dims = 1;
int[] sizes = new int[]{numberOfBins};
int histType = CV_HIST_ARRAY;
float[] minMax = new float[]{minRange, maxRange};
float[][] ranges = new float[][]{minMax};

CvHistogram hist = cvCreateHist(dims, sizes, histType, ranges, 1); 
cvCalcHist(hsvImage1, hist, 0, null);
return hist;

}

private IplImageArray splitChannels(IplImage hsvImage) {
    CvSize size = hsvImage.cvSize();
    int depth = hsvImage.depth();
    IplImage channel0 = cvCreateImage(size, depth, 1);
    IplImage channel1 = cvCreateImage(size, depth, 1);
    IplImage channel2 = cvCreateImage(size, depth, 1);
    cvSplit(hsvImage, channel0, channel1, channel2, null);
    return new IplImageArray(channel0, channel1, channel2);
}

答案 1 :(得分:0)

您的错误就在这一部分:

for (i = 0; i < 256; i++) {//draw the histogram 
    float value = opencv_legacy.cvQueryHistValue_1D(hist, i);
    float nextValue = opencv_legacy.cvQueryHistValue_1D(hist, i + 1);

您使用i+1会导致错误超出范围,您可以使用for直到255更正错误。

我希望我帮助过你。 GL

相关问题