MS Form Recognizer - How to optimize table cell recognization by adding options

tlucas 0 Reputation points
2023-04-25T08:27:52.37+00:00
I'm using the Form Recognizer service.

I would like to optimize the table cell recognizer by adding some options

I declare options as:
AnalyzeDocumentOptions options = new AnalyzeDocumentOptions();

I would like to add the following options:
var options = new RecognizeFormOptions()
{
    FormContentType = FormContentType.Pdf,
    IncludeFieldElements = true,
    Locale = "en-US",
    ReadingOrder = ReadingOrder.LeftToRight,
    Tables = { new FormRecognizer.Models.FormTableOptions() 
		{ColumnCount > 10, 
            MinColumnWidth = 0.5, 
            MinRowHeight = 0.5, 
            IncludeHeaders = true  } }
};

but my option object only give me to settings:
options.Locale
options.Pages 

How can I fix this?

Not Monitored
Not Monitored
Tag not monitored by Microsoft.
37,797 questions
0 comments No comments
{count} votes