1
我正在嘗試使用java從NeurophStudio獲取輸出(例如:cat:0,988; dog:0.012)。神經網很好地識別圖像。我找到了下面的代碼。前兩個導入行中出現錯誤。有誰知道我可以在哪裏找到/下載這些軟件包?我已經搜遍了我的所有目錄,但沒有找到它。NeurophStudio的Obtining輸出 - 導入錯誤(java)
import org.neuroph.core.NeuralNetwork; // ! error
import org.neuroph.contrib.imgrec.ImageRecognitionPlugin; // ! error
import java.util.HashMap;
import java.io.File;
import java.io.IOException;
public class ImageRecognitionSample {
public static void main(String[] args) {
// load trained neural network saved with Neuroph Studio (specify some existing neural network file here)
NeuralNetwork nnet = NeuralNetwork.load("Neural Networks/Iconnet25-8.nnet"); // load trained neural network saved with Neuroph Studio
// get the image recognition plugin from neural network
ImageRecognitionPlugin imageRecognition = (ImageRecognitionPlugin)nnet.getPlugin(ImageRecognitionPlugin.class); // get the image recognition plugin from neural network
try {
// image recognition is done here (specify some existing image file)
HashMap<String, Double> output = imageRecognition.recognizeImage(new File("testimage.png"));
System.out.println(output.toString());
} catch(IOException ioe) {
ioe.printStackTrace();
}
}
}
來源:http://neuroph.sourceforge.net/image_recognition.html
我找到包代碼在這裏:https://github.com/neuroph/neuroph/tree/master/neuroph-2.9/Core/src/main/java/org/neuroph/core 問題:這是不是下載的,我可能會需要多個文件/整個包。
有沒有人有這方面的經驗?任何解決方案
這裏是鏈接到下載neuroph.jar – selamyic
https://sourceforge.net/projects/ainalyzer/files/lib/Neuroph/neuroph.jar/download?use_mirror=master&download=&failedmirror=kent.dl.sourceforge.net – selamyic
編輯你的答案比評論你自己的答案更好。另外,請注意標點符號和格式。謝謝你,歡迎來到StackOverflow。 –