File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,8 +27,6 @@ The following assemblies need to be referenced in your application based on the
2727 <li>Syncfusion.Pdf.Base</li>
2828 <li>Syncfusion.Compression.Base</li>
2929 <li>Syncfusion.PdfToImageConverter.Base</li>
30- <li>Microsoft.ML.OnnxRuntime – Version="1.18.0"</li>
31- <li>Newtonsoft.Json – Version="13.0"</li>
3230 </ul>
3331 </td>
3432 </tr >
@@ -42,8 +40,6 @@ The following assemblies need to be referenced in your application based on the
4240 <li>Syncfusion.Pdf.Portable</li>
4341 <li>Syncfusion.Compression.Portable</li>
4442 <li>Syncfusion.PdfToImageConverter.Portable</li>
45- <li>Microsoft.ML.OnnxRuntime – Version="1.18.0"</li>
46- <li>Newtonsoft.Json – Version="13.0.2"</li>
4743 </ul>
4844 </td>
4945 </tr >
@@ -56,8 +52,6 @@ The following assemblies need to be referenced in your application based on the
5652 <li>Syncfusion.Pdf.NET</li>
5753 <li>Syncfusion.Compression.NET</li>
5854 <li>Syncfusion.PdfToImageConverter.NET</li>
59- <li>Microsoft.ML.OnnxRuntime – Version="1.18.0"</li>
60- <li>Newtonsoft.Json – Version="13.0.2"</li>
6155 </ul>
6256 </td>
6357 </tr >
Original file line number Diff line number Diff line change @@ -86,11 +86,10 @@ recognizer.FormRecognizeOptions.ConfidenceThreshold = 0.9;
8686
8787FormRecognizer recognizer = new FormRecognizer();
8888// Set a single page range – detects only the specified page
89- recognizer.FormRecognizeOptions.PageRange = new int[ ,] { { 3 } };
90- recognizer.FormRecognizeOptions.PageRange = new int[ ,] { { 8 } };
89+ recognizer.FormRecognizeOptions.PageRange = new int[ ,] {{ 3 }{ 8 }};
9190
9291// Set a page range – detects content between the specified start and end page
93- recognizer.FormRecognizeOptions.PageRange = new int[ ,] { { 3, 8 } };
92+ recognizer.FormRecognizeOptions.PageRange = new int[ ,] { { 3, 8 }};
9493
9594{% endhighlight %}
9695{% endtabs %}
You can’t perform that action at this time.
0 commit comments