设置首页收藏本站
开启左侧

[HALCON例程] mlp或svm识别字符串错误怎么纠正?使用词典

[复制链接]
绝地武士 发表于 2023-12-9 11:05:28 | 显示全部楼层 |阅读模式
do_ocr_word_mlp或者do_ocr_word_svm识别字符串错误并使用词典纠正方法
  1. *创建词典
  2. create_lexicon ('months', ['january', 'february', 'march', 'april', 'may', 'june', 'july', 'august', 'september', 'october', 'november', 'december'], Months)
  3. * 查找一个正确的单词
  4. lookup_lexicon (Months, 'may', Found)
  5. * 没有找到情况下
  6. lookup_lexicon (Months, 'nay', Found)
  7. * 注意! 词典是大小写敏感的.
  8. lookup_lexicon (Months, 'May', Found)
  9. * 查找最接近匹配并纠正成正常单词
  10. suggest_lexicon (Months, 'nay', Suggestion, NumCorrections)
  11. suggest_lexicon (Months, 'mya', Suggestion, NumCorrections)
  12. suggest_lexicon (Months, 'nya', Suggestion, NumCorrections)
  13. suggest_lexicon (Months, 'jyna', Suggestion, NumCorrections)
  14. * 读取词典内容
  15. inspect_lexicon (Months, Words)
复制代码
本例子用于识别错误情况下,将自动替换成正确的内置单词。
该例子在halcon22.11.2.0测试通过


奖励计划已经开启,本站鼓励作者发布最擅长的技术内容和资源,流量变现就在现在,[点我]加入吧~~~Go
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表