7行python代码实现核算检测批量复查

本文涉及的产品
教育场景识别,教育场景识别 200次/月
票据凭证识别,票据凭证识别 200次/月
OCR统一识别,每月200次
简介: 7行python代码实现核算检测批量复查

一、为什么要弄该系统?


众所周知,当前大势下,核酸检测,验证复查是每天都少不了的场景。但是检测设备昂贵,且有次数限制,有的还需要向卫生相关部门申请,那么有没有可能搭建一套自己的核酸检测复查系统呢?答案是肯定的。

image.png


二、PaddleHub快速部署


基本的思路是使用PaddleHub OCR模型对手机健康码等信息进行识别。可省去模型训练之烦恼,快速得到想要的效果,具体代码如下:


1.引入paddlehub包


import paddlehub as hub


2.引入 ocr 模型


调用chinese_ocr_db_crnn_server识别模型


三、代码


import paddlehub as hub, cv2, os, csv
if __name__ == '__main__':
    module = hub.Module(name="chinese_ocr_db_crnn_server")
    for root, dirs, all_list_path in os.walk("images"):
        results = module.recognize_text(images=[cv2.imread("images/" + image_path) for image_path in all_list_path],
                                        output_dir='ocr_result', visualization=True, box_thresh=0.5,
                                        text_thresh=0.5)  # use_gpu=True,
        for result in results:
            print(result)


四、检测效果


{'save_path': 'ocr_result\\ndarray_1650280393.5890908.jpg', 'data': [{'text': 'HOD SGmN ', 'confidence': 0.5865637063980103, 'text_box_position': [[50, 0], [309, 14], [300, 75], [42, 53]]}, {'text': '3.8', 'confidence': 0.9981439113616943, 'text_box_position': [[289, 19], [329, 9], [337, 34], [298, 43]]}, {'text': '*56023:35', 'confidence': 0.8589357733726501, 'text_box_position': [[781, 19], [1018, 19], [1018, 56], [781, 56]]}, {'text': 'HD2', 'confidence': 0.9982423782348633, 'text_box_position': [[59, 43], [115, 43], [115, 68], [59, 68]]}, {'text': 'K/s', 'confidence': 0.9931795597076416, 'text_box_position': [[298, 39], [334, 39], [334, 63], [298, 63]]}, {'text': '核酸与抗体检测结:', 'confidence': 0.9794898629188538, 'text_box_position': [[50, 129], [697, 129], [697, 173], [50, 173]]}, {'text': '查询人员:', 'confidence': 0.9450464844703674, 'text_box_position': [[53, 275], [244, 275], [244, 321], [53, 321]]}, {'text': '切换', 'confidence': 0.9991570711135864, 'text_box_position': [[911, 304], [1029, 304], [1029, 363], [911, 363]]}, {'text': '张三33**************11', 'confidence': 0.9848297834396362, 'text_box_position': [[90, 333], [663, 324], [663, 385], [90, 394]]}, {'text': '省内核酸结果', 'confidence': 0.9990420937538147, 'text_box_position': [[157, 519], [435, 519], [435, 563], [157, 563]]}, {'text': '采样时间:2022-04-0614时', 'confidence': 0.974065363407135, 'text_box_position': [[98, 641], [694, 641], [694, 684], [98, 684]]}, {'text': '检测时间:2022-04-0700时', 'confidence': 0.9998931884765625, 'text_box_position': [[98, 719], [694, 719], [694, 762], [98, 762]]}, {'text': '阴性', 'confidence': 0.9995075464248657, 'text_box_position': [[852, 716], [945, 706], [950, 758], [857, 767]]}, {'text': '四川大学华西医院', 'confidence': 0.9998956918716431, 'text_box_position': [[98, 794], [424, 794], [424, 838], [98, 838]]}, {'text': '抗体检测结果', 'confidence': 0.9995054602622986, 'text_box_position': [[157, 953], [435, 953], [435, 996], [157, 996]]}, {'text': '未查询到您的检测结果', 'confidence': 0.9969052672386169, 'text_box_position': [[101, 1128], [559, 1128], [559, 1172], [101, 1172]]}, {'text': '服务说明:', 'confidence': 0.9897974133491516, 'text_box_position': [[56, 1326], [284, 1326], [284, 1379], [56, 1379]]}, {'text': '1.本服务支持查询本人14日内核酸检测结果和既往', 'confidence': 0.9986771941184998, 'text_box_position': [[59, 1413], [1015, 1413], [1015, 1450], [59, 1450]]}, {'text': '血清特异性lgG抗体检测结果。', 'confidence': 0.9697466492652893, 'text_box_position': [[56, 1474], [615, 1474], [615, 1518], [56, 1518]]}, {'text': '2.相关查询结果基于国家卫生健康部门数据库,根', 'confidence': 0.9759125709533691, 'text_box_position': [[56, 1555], [1015, 1555], [1015, 1591], [56, 1591]]}, {'text': '据各地检测数据提供,正在不断汇聚更新中。', 'confidence': 0.9888159036636353, 'text_box_position': [[56, 1618], [891, 1618], [891, 1655], [56, 1655]]}, {'text': '四川省应对新型冠状病毒肺炎疫情应急指挥部', 'confidence': 0.978419840335846, 'text_box_position': [[196, 2191], [880, 2191], [880, 2220], [196, 2220]]}, {'text': '四川省大数据中心提供支持', 'confidence': 0.981896162033081, 'text_box_position': [[334, 2242], [745, 2242], [745, 2271], [334, 2271]]}]}
{'save_path': 'ocr_result\\ndarray_1650280437.9316654.jpg', 'data': [{'text': 'HOD SGmN ', 'confidence': 0.5919920206069946, 'text_box_position': [[50, 0], [309, 14], [300, 75], [42, 53]]}, {'text': '3.8', 'confidence': 0.9982979893684387, 'text_box_position': [[289, 19], [329, 9], [337, 34], [298, 43]]}, {'text': '*≥6023:35', 'confidence': 0.8562882542610168, 'text_box_position': [[781, 19], [1018, 19], [1018, 56], [781, 56]]}, {'text': 'HD2', 'confidence': 0.9981972575187683, 'text_box_position': [[59, 43], [115, 43], [115, 68], [59, 68]]}, {'text': 'K/s', 'confidence': 0.9931250214576721, 'text_box_position': [[298, 39], [334, 39], [334, 63], [298, 63]]}, {'text': '核酸与抗体检测结:', 'confidence': 0.9796482920646667, 'text_box_position': [[50, 129], [697, 129], [697, 173], [50, 173]]}, {'text': ':', 'confidence': 0.6901877522468567, 'text_box_position': [[711, 124], [902, 117], [905, 170], [714, 177]]}, {'text': '查询人员:', 'confidence': 0.9437354207038879, 'text_box_position': [[53, 275], [244, 275], [244, 321], [53, 321]]}, {'text': '切换', 'confidence': 0.9991297721862793, 'text_box_position': [[911, 304], [1029, 304], [1029, 363], [911, 363]]}, {'text': '李四\u300033**************11', 'confidence': 0.9692168235778809, 'text_box_position': [[81, 331], [663, 324], [663, 385], [81, 392]]}, {'text': '省内核酸结果', 'confidence': 0.9991196990013123, 'text_box_position': [[157, 519], [435, 519], [435, 563], [157, 563]]}, {'text': '采样时间:2022-04-0614时', 'confidence': 0.9742894172668457, 'text_box_position': [[98, 641], [694, 641], [694, 684], [98, 684]]}, {'text': '检测时间:2022-04-0700时', 'confidence': 0.9998957514762878, 'text_box_position': [[98, 719], [694, 719], [694, 762], [98, 762]]}, {'text': '阴性', 'confidence': 0.9994761943817139, 'text_box_position': [[852, 716], [945, 706], [950, 758], [857, 767]]}, {'text': '四川大学华西医院', 'confidence': 0.9760406017303467, 'text_box_position': [[98, 794], [424, 794], [424, 838], [98, 838]]}, {'text': '抗体检测结果', 'confidence': 0.9995043277740479, 'text_box_position': [[157, 953], [435, 953], [435, 996], [157, 996]]}, {'text': '未查询到您的检测结果', 'confidence': 0.9970100522041321, 'text_box_position': [[101, 1128], [559, 1128], [559, 1172], [101, 1172]]}, {'text': '服务说明:', 'confidence': 0.9902758598327637, 'text_box_position': [[56, 1326], [284, 1326], [284, 1379], [56, 1379]]}, {'text': '1.本服务支持查询本人14日内核酸检测结果和既往', 'confidence': 0.9990904927253723, 'text_box_position': [[59, 1413], [1015, 1413], [1015, 1450], [59, 1450]]}, {'text': '血清特异性lgG抗体检测结果。', 'confidence': 0.9744695425033569, 'text_box_position': [[56, 1474], [615, 1474], [615, 1518], [56, 1518]]}, {'text': '2.相关查询结果基于国家卫生健康部门数据库,根', 'confidence': 0.9748148918151855, 'text_box_position': [[56, 1555], [1015, 1555], [1015, 1591], [56, 1591]]}, {'text': '据各地检测数据提供,正在不断汇聚更新中。', 'confidence': 0.986540675163269, 'text_box_position': [[56, 1618], [891, 1618], [891, 1655], [56, 1655]]}, {'text': '四川省应对新型冠状病毒肺炎疫情应急指挥部', 'confidence': 0.9854202270507812, 'text_box_position': [[196, 2191], [880, 2191], [880, 2220], [196, 2220]]}, {'text': '四川省大数据中心提供支持', 'confidence': 0.9782963991165161, 'text_box_position': [[334, 2242], [745, 2242], [745, 2271], [334, 2271]]}]}
{'save_path': 'ocr_result\\ndarray_1650280482.2817101.jpg', 'data': [{'text': 'HOD SGmN ', 'confidence': 0.5919920206069946, 'text_box_position': [[50, 0], [309, 14], [300, 75], [42, 53]]}, {'text': '3.8', 'confidence': 0.9982979893684387, 'text_box_position': [[289, 19], [329, 9], [337, 34], [298, 43]]}, {'text': '*≥6023:35', 'confidence': 0.8562882542610168, 'text_box_position': [[781, 19], [1018, 19], [1018, 56], [781, 56]]}, {'text': 'HD2', 'confidence': 0.9981972575187683, 'text_box_position': [[59, 43], [115, 43], [115, 68], [59, 68]]}, {'text': 'K/s', 'confidence': 0.9931250214576721, 'text_box_position': [[298, 39], [334, 39], [334, 63], [298, 63]]}, {'text': '核酸与抗体检测结:', 'confidence': 0.9796482920646667, 'text_box_position': [[50, 129], [697, 129], [697, 173], [50, 173]]}, {'text': ':', 'confidence': 0.6901877522468567, 'text_box_position': [[711, 124], [902, 117], [905, 170], [714, 177]]}, {'text': '查询人员:', 'confidence': 0.9880987405776978, 'text_box_position': [[53, 275], [241, 275], [241, 321], [53, 321]]}, {'text': '切换', 'confidence': 0.9991297721862793, 'text_box_position': [[911, 304], [1029, 304], [1029, 363], [911, 363]]}, {'text': '王五33**************11', 'confidence': 0.9995682835578918, 'text_box_position': [[95, 333], [663, 326], [663, 385], [95, 392]]}, {'text': '省内核酸结果', 'confidence': 0.9991196990013123, 'text_box_position': [[157, 519], [435, 519], [435, 563], [157, 563]]}, {'text': '采样时间:2022-04-0614时', 'confidence': 0.9742894172668457, 'text_box_position': [[98, 641], [694, 641], [694, 684], [98, 684]]}, {'text': '检测时间:2022-04-0700时', 'confidence': 0.9998957514762878, 'text_box_position': [[98, 719], [694, 719], [694, 762], [98, 762]]}, {'text': '阴性', 'confidence': 0.9994761943817139, 'text_box_position': [[852, 716], [945, 706], [950, 758], [857, 767]]}, {'text': '四川大学华西医院', 'confidence': 0.9760406017303467, 'text_box_position': [[98, 794], [424, 794], [424, 838], [98, 838]]}, {'text': '抗体检测结果', 'confidence': 0.9995043277740479, 'text_box_position': [[157, 953], [435, 953], [435, 996], [157, 996]]}, {'text': '未查询到您的检测结果', 'confidence': 0.9970100522041321, 'text_box_position': [[101, 1128], [559, 1128], [559, 1172], [101, 1172]]}, {'text': '服务说明:', 'confidence': 0.9902758598327637, 'text_box_position': [[56, 1326], [284, 1326], [284, 1379], [56, 1379]]}, {'text': '1.本服务支持查询本人14日内核酸检测结果和既往', 'confidence': 0.9990904927253723, 'text_box_position': [[59, 1413], [1015, 1413], [1015, 1450], [59, 1450]]}, {'text': '血清特异性lgG抗体检测结果。', 'confidence': 0.9744695425033569, 'text_box_position': [[56, 1474], [615, 1474], [615, 1518], [56, 1518]]}, {'text': '2.相关查询结果基于国家卫生健康部门数据库,根', 'confidence': 0.9748148918151855, 'text_box_position': [[56, 1555], [1015, 1555], [1015, 1591], [56, 1591]]}, {'text': '据各地检测数据提供,正在不断汇聚更新中。', 'confidence': 0.986540675163269, 'text_box_position': [[56, 1618], [891, 1618], [891, 1655], [56, 1655]]}, {'text': '四川省应对新型冠状病毒肺炎疫情应急指挥部', 'confidence': 0.9854202270507812, 'text_box_position': [[196, 2191], [880, 2191], [880, 2220], [196, 2220]]}, {'text': '四川省大数据中心提供支持', 'confidence': 0.9782963991165161, 'text_box_position': [[334, 2242], [745, 2242], [745, 2271], [334, 2271]]}]}



image.pngimage.pngimage.png


五、其他


可以在学校等需要需要批量广泛核酸核查场景使用。识别结果可保存至excel表格,从而减轻工作量。


目录
相关文章
|
3天前
|
缓存 监控 测试技术
Python中的装饰器:功能扩展与代码复用的利器###
本文深入探讨了Python中装饰器的概念、实现机制及其在实际开发中的应用价值。通过生动的实例和详尽的解释,文章展示了装饰器如何增强函数功能、提升代码可读性和维护性,并鼓励读者在项目中灵活运用这一强大的语言特性。 ###
|
6天前
|
缓存 开发者 Python
探索Python中的装饰器:简化代码,增强功能
【10月更文挑战第35天】装饰器在Python中是一种强大的工具,它允许开发者在不修改原有函数代码的情况下增加额外的功能。本文旨在通过简明的语言和实际的编码示例,带领读者理解装饰器的概念、用法及其在实际编程场景中的应用,从而提升代码的可读性和复用性。
|
2天前
|
Python
探索Python中的装饰器:简化代码,提升效率
【10月更文挑战第39天】在编程的世界中,我们总是在寻找使代码更简洁、更高效的方法。Python的装饰器提供了一种强大的工具,能够让我们做到这一点。本文将深入探讨装饰器的基本概念,展示如何通过它们来增强函数的功能,同时保持代码的整洁性。我们将从基础开始,逐步深入到装饰器的高级用法,让你了解如何利用这一特性来优化你的Python代码。准备好让你的代码变得更加优雅和强大了吗?让我们开始吧!
9 1
|
7天前
|
设计模式 缓存 监控
Python中的装饰器:代码的魔法增强剂
在Python编程中,装饰器是一种强大而灵活的工具,它允许程序员在不修改函数或方法源代码的情况下增加额外的功能。本文将探讨装饰器的定义、工作原理以及如何通过自定义和标准库中的装饰器来优化代码结构和提高开发效率。通过实例演示,我们将深入了解装饰器的应用,包括日志记录、性能测量、事务处理等常见场景。此外,我们还将讨论装饰器的高级用法,如带参数的装饰器和类装饰器,为读者提供全面的装饰器使用指南。
|
3天前
|
存储 缓存 监控
掌握Python装饰器:提升代码复用性与可读性的利器
在本文中,我们将深入探讨Python装饰器的概念、工作原理以及如何有效地应用它们来增强代码的可读性和复用性。不同于传统的函数调用,装饰器提供了一种优雅的方式来修改或扩展函数的行为,而无需直接修改原始函数代码。通过实际示例和应用场景分析,本文旨在帮助读者理解装饰器的实用性,并鼓励在日常编程实践中灵活运用这一强大特性。
|
7天前
|
存储 算法 搜索推荐
Python高手必备!揭秘图(Graph)的N种风骚表示法,让你的代码瞬间高大上
在Python中,图作为重要的数据结构,广泛应用于社交网络分析、路径查找等领域。本文介绍四种图的表示方法:邻接矩阵、邻接表、边列表和邻接集。每种方法都有其特点和适用场景,掌握它们能提升代码效率和可读性,让你在项目中脱颖而出。
19 5
|
5天前
|
机器学习/深度学习 数据采集 人工智能
探索机器学习:从理论到Python代码实践
【10月更文挑战第36天】本文将深入浅出地介绍机器学习的基本概念、主要算法及其在Python中的实现。我们将通过实际案例,展示如何使用scikit-learn库进行数据预处理、模型选择和参数调优。无论你是初学者还是有一定基础的开发者,都能从中获得启发和实践指导。
12 2
|
7天前
|
数据库 Python
异步编程不再难!Python asyncio库实战,让你的代码流畅如丝!
在编程中,随着应用复杂度的提升,对并发和异步处理的需求日益增长。Python的asyncio库通过async和await关键字,简化了异步编程,使其变得流畅高效。本文将通过实战示例,介绍异步编程的基本概念、如何使用asyncio编写异步代码以及处理多个异步任务的方法,帮助你掌握异步编程技巧,提高代码性能。
21 4
|
8天前
|
缓存 开发者 Python
探索Python中的装饰器:简化和增强你的代码
【10月更文挑战第32天】 在编程的世界中,简洁和效率是永恒的追求。Python提供了一种强大工具——装饰器,它允许我们以声明式的方式修改函数的行为。本文将深入探讨装饰器的概念、用法及其在实际应用中的优势。通过实际代码示例,我们不仅理解装饰器的工作方式,还能学会如何自定义装饰器来满足特定需求。无论你是初学者还是有经验的开发者,这篇文章都将为你揭示装饰器的神秘面纱,并展示如何利用它们简化和增强你的代码库。
|
7天前
|
API 数据处理 Python
探秘Python并发新世界:asyncio库,让你的代码并发更优雅!
在Python编程中,随着网络应用和数据处理需求的增长,并发编程变得愈发重要。asyncio库作为Python 3.4及以上版本的标准库,以其简洁的API和强大的异步编程能力,成为提升性能和优化资源利用的关键工具。本文介绍了asyncio的基本概念、异步函数的定义与使用、并发控制和资源管理等核心功能,通过具体示例展示了如何高效地编写并发代码。
17 2