From 184439aa38d4bb25912afa21dab2a283083a2e57 Mon Sep 17 00:00:00 2001 From: simon Date: Sun, 9 Feb 2020 14:06:59 -0500 Subject: [PATCH] increase minimum image size for OCR --- src/parsing/pdf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parsing/pdf.c b/src/parsing/pdf.c index b134352..e685abf 100644 --- a/src/parsing/pdf.c +++ b/src/parsing/pdf.c @@ -1,7 +1,7 @@ #include "pdf.h" #include "src/ctx.h" -#define MIN_OCR_SIZE 128 +#define MIN_OCR_SIZE 350 __thread text_buffer_t thread_buffer;