在tesseract中使用tessedit_char_whitelist时,如何将文件保存到output.txt?

时间:2018-05-26 11:19:51

标签: tesseract python-tesseract

我设法使用

tesseract image.jpg output.txt 

读取图像文件上的文本并将其保存为文本文件,但现在我尝试使用更具体的命令与tesseract,它试图打开输出文件而不是保存到它中

我正在尝试使用

tesseract image.jpg stdout -c tessedit_char_whitelist=ABCDEFGHIJKLMNOPQRSTUVWXYZ%/-15 TextOutput 

我确实刚刚开始使用tesseract,所以我可能犯了一个愚蠢的错误

1 个答案:

答案 0 :(得分:0)

我发现如果你插入一个>在具体命令之后它起作用

像这样

it('should', async(() => {
   spyOn(component, 'onButtonClick');

   let button = fixture.debugElement.nativeElement.querySelector('button');
   button.click();

   fixture.whenStable().then(() => {
   expect(component.onButtonClick).toHaveBeenCalled();
  })
}));