SliderBlues
SliderBlues

Reputation: 43

How to make call to analyze a receipt with Azure Form Recognizer when using docker container version?

I have Form Recognizer as a Docker container up and running per this link:

https://learn.microsoft.com/en-us/azure/cognitive-services/form-recognizer/form-recognizer-container-howto

I can use Postman and get responses back like this:

http://localhost:5000/formrecognizer/v1.0-preview/custom/models

Returns with 200 and no models which is expected.

Looking to do receipt example listed here:

https://learn.microsoft.com/en-us/azure/cognitive-services/form-recognizer/quickstarts/curl-receipts

Example is all about the service and having images on blob storage.

Is it possible for me to do this example with container version? If yes could you please shed light or link on what the request may look like? I'm assuming based on the container setup that has "c:\input" and "c:\output" in it's Docker run command those would be substitute for blob storage.

Thanks, T

Upvotes: 0

Views: 256

Answers (1)

Neta
Neta

Reputation: 720

The Form Recognizer container is currently a v1.0 (preview) container, are you using the container because you need to maintain the data on premise ? When using containers all the data resides on premise. If the data is on a blob storage you can use the Form Recognizer v2.0 (preview) managed service which includes lots of new feature - train with labels, train without labels, layout, extraction enhancements and more. https://learn.microsoft.com/en-us/azure/cognitive-services/form-recognizer/whats-new

Upvotes: 1

Related Questions