How can i initialize the engineLoader from another computer where the FlexiCaputre SDK installed. The scenerio is:
{
IEngineLoader engineLoader = Engine.CreateEngineOutprocLoader();
IEngine engine = engineLoader.Load(serialNumber, dllPath);
engine.EnableRecognitionVariants(true);
IFlexiCaptureProcessor processor = engine.CreateFlexiCaptureProcessor();
processor.AddDocumentDefinitionFile("DocumentDefinition.fcdot");
processor.AddImageFile(imagePath);
IDocument document = processor.RecognizeNextDocument();
}
What i want to do is, from the above code snippet the dllPath dir resides on another computer. And the above code running on the computer that hasn't any installation FlexiCapture SDK. It only has the required jar. What i have to do now to achieve this???
Comments
2 comments
Hello!
You need FlexiCapture Engine to be installed on the machine for correct work with it. This means that the recognition process can be run only on the machine where FlexiCapture Engine is installed. For example, you can organize the transfer of images from several machines to one machine with installed FCE so that the recognition of all images is performed on this one machine. But you can't achieve the configuration described in your message.
thanks a lot
Please sign in to leave a comment.