Java Library用于图像特征提取和比较

时间:2015-02-06 14:51:42

标签: java image-processing histogram svm

我需要一个用于Java(不是Android)的梯度直方图(和类似)和SVM(或类似技术)的库。我用谷歌搜索,但没有确切的出现。你能帮帮我吗?

1 个答案:

答案 0 :(得分:0)

要计算HOG,您可以使用Catalano Framework

请参阅以下示例:

    //Load the image.
    FastBitmap fb = new FastBitmap(bufferedImage);

    //if the image is RGB, we must convert to grayscale.
    if(fb.isGrayscale()) fb.toGrayscale();

    HistogramOfOrientedGradients hog = new HistogramOfOrientedGradients();
    ArrayList<double[]> hists = hog.ProcessImage(fb);

此处包含tutorial如何使用。