I am trying to run a code, I have dowoaded the resources and jar files …my code is :
package a;
import java.util.;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.math.;
import com.aspose.ocr.ILanguage;
import com.aspose.ocr.ImageStream;
import com.aspose.ocr.Language;
import com.aspose.ocr.OcrEngine;
public class Demo
{
public static void main(String args[])
{
String imagePath = “E:/d.bmp”;
String resourcesFolderPath = “F:/resources.zip”;
// Create an instance of OcrEngine
OcrEngine ocr = new OcrEngine();
// Set Resources for OcrEngine
try {
ocr.setResource(new FileInputStream(resourcesFolderPath));
} catch (FileNotFoundException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
// Set image file
ocr.setImage(ImageStream.fromFile(imagePath));
// Add language
ILanguage language = Language.load(“english”);
ocr.getLanguages().addLanguage(language);
// Perform OCR and get extracted text
try {
if (ocr.process()) {
System.out.println("\ranswer -> " + ocr.getText());
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
But , It is giving an exception
com.aspose.ocr.OcrException: Error occurred during recognition.
at com.aspose.ocr.OcrEngine.a(Unknown Source)
at com.aspose.ocr.OcrEngine.process(Unknown Source)
at a.Demo.main(Demo.java:38)
Caused by: com.aspose.ocr.internal.aK: Error while loading net (net): Can’t find resource “net”
at com.aspose.ocr.ad.(Unknown Source)
at com.aspose.ocr.ae.a(Unknown Source)
at com.aspose.ocr.aO.a(Unknown Source)
at com.aspose.ocr.aO.(Unknown Source)
at com.aspose.ocr.aj.a(Unknown Source)
… 3 more
Caused by: java.lang.IllegalArgumentException: Can’t find resource “net”
at com.aspose.ocr.ax.a(Unknown Source)
… 8 more
Can You please help me out??? I have a urgent need…