We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45b129a commit 7b2d7c5Copy full SHA for 7b2d7c5
src/main/java/Main.java
@@ -9,7 +9,8 @@ public static void main(String[] args) throws Exception {
9
* */
10
ImageProcessor imageProcessor = new ImageProcessor();
11
Classificator classificator = new Classificator();
12
- List<String> result = classificator.classify(imageProcessor.loadAndNormalizeImages("images/ship.jpg", "images/hyndai.jpg"));
+ float[][][][] imageData = imageProcessor.loadAndNormalizeImages("images/ship.jpg", "images/dog.jpg");
13
+ List<String> result = classificator.classify(imageData);
14
for(String label: result) {
15
System.out.println(label);
16
}
0 commit comments