摘要: 用homebrew 在电脑上安装tesseract库 brew install tesseract 用pip安装支持python的tesseract 接口 pip install pytesseract 使用pytesseract库对图片文件(jpg、png、bmp等)进行识别,把图片转换成字符串输 阅读全文
posted @ 2017-01-12 23:42 tonglin0325 阅读(652) 评论(0) 推荐(0) 编辑
摘要: 可以使用pprof来分析golang程序的CPU性能,内存占用,block死锁,Goroutine性能等,pprof一般是在需要分析代码性能的时候才加入 1.分析Gin web服务的性能 可以使用 gin-contrib/pprof 这个工具,参考:Gin框架中使用pprof 添加依赖 go get 阅读全文
posted @ 2017-01-12 17:03 tonglin0325 阅读(324) 评论(0) 推荐(0) 编辑