我需要一个用于Java(不是Android)的梯度直方图(和类似)和SVM(或类似技术)的库。我用谷歌搜索,但没有确切的出现。你能帮帮我吗?
答案 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如何使用。