mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-16 22:50:13 +01:00
🎨 桌面端支持搜索图片中的文本 Fix https://github.com/siyuan-note/siyuan/issues/3470
This commit is contained in:
parent
938e5c677a
commit
92ed2f38e7
1 changed files with 3 additions and 2 deletions
|
|
@ -82,9 +82,10 @@ func Tesseract(imgAbsPath string) string {
|
|||
|
||||
defer logging.Recover()
|
||||
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 3*time.Second)
|
||||
defer cancel()
|
||||
|
||||
now := time.Now()
|
||||
cmd := exec.CommandContext(ctx, "tesseract", "-c", "debug_file=/dev/null", imgAbsPath, "stdout", "-l", "chi_sim+eng")
|
||||
gulu.CmdAttr(cmd)
|
||||
output, err := cmd.CombinedOutput()
|
||||
|
|
@ -108,7 +109,7 @@ func Tesseract(imgAbsPath string) string {
|
|||
ret := string(output)
|
||||
ret = strings.ReplaceAll(ret, "\r", "")
|
||||
ret = strings.ReplaceAll(ret, "\n", "")
|
||||
logging.LogInfof("tesseract [path=%s, size=%d]: %s", imgAbsPath, info.Size(), ret)
|
||||
logging.LogInfof("tesseract [path=%s, size=%d, text=%s, elapsed=%dms]", imgAbsPath, info.Size(), ret, time.Since(now).Milliseconds())
|
||||
ocrResultCache.Set(imgAbsPath, ret, info.Size())
|
||||
return ret
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue