add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

17
pages.zh/common/gocr.md Normal file
View File

@@ -0,0 +1,17 @@
# gocr
> 光学字符识别工具。
> 利用其引擎识别字符,并提示用户输入未知模式以将其存储在数据库中。
> 更多信息:<https://manned.org/gocr.1>。
- 识别输入图像中的字符并将其输出到指定文件中。将数据库放在 `path/to/db_directory`(请验证文件夹是否存在,否则数据库使用将被静默跳过)。模式 130 意味着创建 + 使用 + 扩展数据库:
`gocr -m 130 -p {{path/to/db_directory}} -i {{path/to/input_image.png}} -o {{path/to/output_file.txt}}`
- 识别字符并假设所有字符都是数字:
`gocr -m 130 -p {{path/to/db_directory}} -i {{path/to/input_image.png}} -o {{path/to/output_file.txt}} -C "{{0..9}}"`
- 以 100% 的确定性识别字符(字符更有可能被视为未知):
`gocr -m 130 -p {{path/to/db_directory}} -i {{path/to/input_image.png}} -o {{path/to/output_file.txt}} -a 100`