Skip to content

Commit 2898b6a

Browse files
modified the threshold value
1 parent 47b0e7f commit 2898b6a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • Document-Processing/Data-Extraction/Smart-Table-Extractor/NET

Document-Processing/Data-Extraction/Smart-Table-Extractor/NET/Features.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ using (FileStream stream = new FileStream("Input.pdf", FileMode.Open, FileAccess
3131
TableExtractionOptions options = new TableExtractionOptions();
3232
options.DetectBorderlessTables = true;
3333
options.PageRange = new int[,] { { 1, 5 } };
34-
options.ConfidenceThreshold = 0.75;
34+
options.ConfidenceThreshold = 0.6;
3535

3636
//Assign the configured options to the extractor.
3737
extractor.TableExtractionOptions = options;
@@ -61,7 +61,7 @@ using (FileStream stream = new FileStream("Input.pdf", FileMode.Open, FileAccess
6161
TableExtractionOptions options = new TableExtractionOptions();
6262
options.DetectBorderlessTables = true;
6363
options.PageRange = new int[,] { { 1, 5 } };
64-
options.ConfidenceThreshold = 0.75;
64+
options.ConfidenceThreshold = 0.6;
6565

6666
//Assign the configured options to the extractor.
6767
extractor.TableExtractionOptions = options;

0 commit comments

Comments
 (0)