摘要: 参考链接:https://github.com/argman/EAST (项目来源) https://github.com/opencv/opencv/issues/12491 (遇到的问题) https://www.pyimagesearch.com/2018/08/20/opencv-text- 阅读全文
posted @ 2020-04-24 18:13 amanda_zw 阅读(816) 评论(0) 推荐(1) 编辑
摘要: 加载的方法在opencv的官网就有。但是这里有一点要注意: cv::Mat inputBlob = blobFromImage(frame, 1.0, cv::Size(inSize, inSize), (123.68, 116.78, 103.94), true, false);ssd_net.s 阅读全文
posted @ 2020-07-07 15:35 amanda_zw 阅读(433) 评论(0) 推荐(0) 编辑
摘要: 地址:https://github.com/PaddlePaddle/PaddleOCR OCR toolkit based on PaddlePaddle (基于飞桨的OCR工具库,包含总模型仅8.6M的超轻量级中文OCR,同时支持多种文本检测、文本识别的训练算法。) 尝试将paddleOCR项目 阅读全文
posted @ 2020-06-10 14:59 amanda_zw 阅读(4899) 评论(0) 推荐(0) 编辑
摘要: 贴一下opencv加载pb的方法,跟加载其他模型没有区别。def main(argv=None): # import the necessary packages from imutils.object_detection import non_max_suppression import nump 阅读全文
posted @ 2020-04-29 15:38 amanda_zw 阅读(697) 评论(1) 推荐(0) 编辑
摘要: 原网址:https://data-flair.training/blogs/cnn-tensorflow-cifar-10/ by DataFlair Team · Published May 21, 2018 · Updated September 15, 2018 1、目标-TensorFlow 阅读全文
posted @ 2018-11-12 11:52 amanda_zw 阅读(348) 评论(0) 推荐(0) 编辑
摘要: C++,TensorFlow,python 阅读全文
posted @ 2018-10-17 09:20 amanda_zw 阅读(3496) 评论(0) 推荐(0) 编辑
摘要: cv2.namedWindow("image_",0) cv2.imshow("image_",image)就可以随意缩放显示图片的窗口大小啦。 图片归一化, norm_size为归一化的大小=64或128等等。 image = cv2.resize(image, (norm_size, norm_ 阅读全文
posted @ 2018-10-12 10:51 amanda_zw 阅读(4439) 评论(0) 推荐(0) 编辑
摘要: 今天开始成为技术girl 阅读全文
posted @ 2018-09-28 15:12 amanda_zw 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 【C++小技巧】 #ifdef _DEBUG imwrite("binary.jpg", img);#endif 清理内存.release();chars_set.clear();chars_set.shrink_to_fit(); 阅读全文
posted @ 2018-09-28 15:10 amanda_zw 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 直接获取内存地址,不需要定义指针类型的方法,(当然也就不需要释放了)USES_CONVERSION; if (myFun1) { CString _input; m_edit_input.GetWindowTextW(_input); if (_input.GetLength() >0) { CSt 阅读全文
posted @ 2018-09-28 15:08 amanda_zw 阅读(539) 评论(0) 推荐(0) 编辑