Pascal Gloor 5年前
コミット
d7d47c7262
1個のファイルの変更2行の追加2行の削除
  1. 2
    2
      bin/autodoc_process.pl

+ 2
- 2
bin/autodoc_process.pl ファイルの表示

@@ -122,12 +122,12 @@ sub ocr_file {
my($file) = @_;
my $txt = '';

open(OCR,"tesseract -l eng+deu+fra+ita %s - |", $file));
open(OCR,sprintf("tesseract -l eng+deu+fra+ita %s - |", $file));
while(<OCR>) {
$txt .= $_;
}
close(OCR);
return $txt;
}
sub create_page_words {

読み込み中…
キャンセル
保存