架构之模板方法等模式的使用

目录

一、程序编写背景

二、编程思路讲解

- 类图

- 实现逻辑

- 工厂模式

- 模板方法模式

  1. 接口类(代码)
  2. 抽象类(代码)
  3. 具体实现类(代码)
  4. 工厂类(代码)
  5. 注册类(代码)
  6. 系统启动加载(代码)
  7. 系统启动加载 - 初始化方法(代码)

总结

  1. 类图绘制
  2. UML图型使用
  3. 设计模式理解
  4. 推荐书籍

一、背景

1. 业务需要使用ocr场景对图片进行识别。但由于前期使用的TesserOcr识别率不是特别高。故又需要新的识别方式。
2. 在确定使用paddleocr后,对程序进行修改。为了兼容两种ocr使用方式。
3. 通过配置yml文件的方式可以在使用时对两种ocr识别方式进行切换使用。(也可配置入数据库进行动态配置)

具体的Ocr识别教程可参照其他文章

TesseractOcr(开源ocr)

  • 安装及使用 >> |

PaddleOcr (开源ocr)

  • paddleocr的安装及使用此部分内容后期待补充
  • 使用pyinstall打包 >> 👀
  • paddleocr模型的训练 此部分内容后期待补充

二、编程思路讲解

首先上类图。可以较直观表现了调用关系

在这里插入图片描述

1. 实现逻辑

简单描述了程序调用顺序

1. 手动配置yml中ocr类型(可配置入数据库进行动态配置)。
2. 程序启动时将两种ocr服务对象加载入缓存。
3. 业务进行时,程序识别会通过传入参数获取对应类型的orc服务对象进行识别服务。
2. 工厂模式

创建TesseractOcr与PaddleOcr使用

import service.ocrservice.recognize.OcrMultiParamRecognize;
import service.ocrservice.recognize.OcrNomralRecognize;
import service.ocrservice.recognize.PaddleOcrRecognize;
import com.msun.cloud.dcm.util.Direct;import java.io.File;public class RecognizeFactory {/*** TesseractOcr识别*/public static Recognize getRecognize(String dataPath, File pendingFile, Direct patientDirect, Direct accnumDirect, String formateName, String dpi) {return new OcrNomralRecognize(dataPath, pendingFile, patientDirect, accnumDirect, formateName, dpi);}/*** paddleOcr识别*/public static Recognize getPaddleOcrRecognize(String filePath, Direct patientDirect, Direct accnumDirect, String formateName) {return new PaddleOcrRecognize(filePath, formateName, patientDirect, accnumDirect);}
}
3. 模板方法模式

粘贴内容还包括使用工厂模式创建对象

  • 接口类
    提供了业务在调用Ocr服务类对象时的统一接口,表现了面向接口编程的思想
    package service.ocrservice;import entity.PO.Patient;
    import PO.RecognizeTemplate;import java.io.File;/*** 通过ocr识别获取患者信息*/
    public interface OcrPatientService {Patient getRecognizedPatient(File pendingFile, String aeTitle, String spFilePath, String formateName, RecognizeTemplate recognizeTemplate);Recognize getRecognize(File pendingFile, RecognizeTemplate template, String formatName);}
  • 抽象类
    封装了公共方法,子类实现抽象类中的抽象方法。公共方法对抽象方法进行调用
    package service.ocrservice;import com.alibaba.fastjson.JSON;
    import entity.BO.OcrRecognizeLog;
    import entity.PO.Patient;
    import entity.PO.RecognizeTemplate;
    import entity.common.Const;
    import mapper.PatientMapper;
    import mapper.RecognizeTemplateMapper;
    import service.SystemConfigService;
    import service.ocrservice.entity.RecognizeEntity;
    import service.ocrservice.service.AsyncOcrRecognizeLogService;
    import lombok.extern.slf4j.Slf4j;
    import org.springframework.beans.factory.annotation.Autowired;import javax.annotation.Resource;
    import java.io.File;
    import java.util.List;@Slf4j
    public abstract class AbstractOcrPatientServiceImpl implements OcrPatientService{@Resourceprivate RecognizeTemplateMapper recognizeTemplateMapper;@Resourceprivate SystemConfigService systemConfigService;@Autowiredprivate AsyncOcrRecognizeLogService asyncOcrRecognizeLogService;@Resourceprivate PatientMapper patientMapper;/*** 获取识别的人员信息* @return*/public Patient getRecognizedPatient(File pendingFile, String aeTitle, String spFilePath, String formateName, RecognizeTemplate recognizeTemplate) {Patient patient = null;try{# 抽象方法调用patient = recognize(dataPath, pendingFile, template, formateName);} finally {...}return patient;}public abstract Patient recognize(String dataPath, File pendingFile, RecognizeTemplate template, String formatName);private void insertExOcrRecord(Patient patient, String aeTitle, String spFilePath) {... 插入日志}protected Patient queryPatient(RecognizeEntity entity) {... 查询人员信息}}
  • 具体实现类
    package com.msun.cloud.dcm.service.ocrservice.impl;import com.msun.cloud.dcm.entity.PO.Patient;
    import com.msun.cloud.dcm.entity.PO.RecognizeTemplate;
    import com.msun.cloud.dcm.service.ocrservice.AbstractOcrPatientServiceImpl;
    import com.msun.cloud.dcm.service.ocrservice.OcrPatientService;
    import com.msun.cloud.dcm.service.ocrservice.Recognize;
    import com.msun.cloud.dcm.service.ocrservice.RecognizeFactory;
    import com.msun.cloud.dcm.util.Direct;
    import org.springframework.stereotype.Service;import java.io.File;
    import java.util.function.Consumer;@Service
    public class PaddleOcrPatientServiceImpl extends AbstractOcrPatientServiceImpl {@Overridepublic Patient recognize(String dataPath, File pendingFile, RecognizeTemplate template, String formatName) {Direct patientDirect = new Direct(template.getPatientRecognizeX(), template.getPatientRecognizeY(), template.getPatientRecognizeW(), template.getPatientRecognizeH());Direct accNumDirect = new Direct(template.getAccnumRecognizeX(), template.getAccnumRecognizeY(), template.getAccnumRecognizeW(), template.getAccnumRecognizeH());Recognize recognize = RecognizeFactory.getPaddleOcrRecognize(pendingFile.getAbsolutePath(), patientDirect, accNumDirect, formatName);if("1".equals(template.getIsReBuild())){return queryPatient3D(recognize.recognize());}return queryPatient(recognize.recognize());}public Recognize getRecognize(File pendingFile, RecognizeTemplate template, String formatName) {Direct patientDirect = new Direct(template.getPatientRecognizeX(), template.getPatientRecognizeY(), template.getPatientRecognizeW(), template.getPatientRecognizeH());Direct accNumDirect = new Direct(template.getAccnumRecognizeX(), template.getAccnumRecognizeY(), template.getAccnumRecognizeW(), template.getAccnumRecognizeH());Recognize recognize = RecognizeFactory.getPaddleOcrRecognize(pendingFile.getAbsolutePath(), patientDirect, accNumDirect, formatName);return recognize;}
    }
    
  • 工厂类
    import ocrservice.recognize.OcrMultiParamRecognize;
    import ocrservice.recognize.OcrNomralRecognize;
    import ocrservice.recognize.PaddleOcrRecognize;
    import util.Direct;import java.io.File;public class RecognizeFactory {/*** 范围识别* @param dataPath* @param pendingFile* @param patientDirect* @param formateName* @param dpi* @return*/public static Recognize getRecognize(String dataPath, File pendingFile, Direct patientDirect, String formateName, String dpi) {return new OcrMultiParamRecognize(dataPath, pendingFile, patientDirect, formateName, dpi);}/*** 精确识别* @param dataPath* @param pendingFile* @param patientDirect* @param formateName* @param dpi* @return*/public static Recognize getRecognize(String dataPath, File pendingFile, Direct patientDirect, Direct accnumDirect, String formateName, String dpi) {return new OcrNomralRecognize(dataPath, pendingFile, patientDirect, accnumDirect, formateName, dpi);}public static Recognize getPaddleOcrRecognize(String filePath, Direct patientDirect, Direct accnumDirect, String formateName) {return new PaddleOcrRecognize(filePath, formateName, patientDirect, accnumDirect);}
    }
    
  • 注册类(包含枚举类)
    package service.ocrservice;import org.springframework.beans.factory.annotation.Value;
    import org.springframework.stereotype.Component;import java.util.Arrays;
    import java.util.HashMap;
    import java.util.Map;/*** 收集 ocr 服务类*/
    @Component
    public class OcrServiceRegistry {public static Map<OcrType, OcrPatientService> registryMap = new HashMap();public static OcrPatientService ocrPatientServiceCache;...public enum OcrType {TesserOcr("1"),PaddleOcr("2");private String code;OcrType(String code) {this.code = code;}public static OcrType getOcrTypeByCode(String code) {for (int i = 0; i < OcrType.values().length; i++) {OcrType ocrType = OcrType.values()[i];if(ocrType.code.equals(code)) return ocrType;}return TesserOcr;}}public static OcrPatientService getOcrService(String ocrTypeCode) {if(ocrPatientServiceCache == null) {ocrPatientServiceCache = registryMap.get(OcrType.getOcrTypeByCode(ocrTypeCode));}return ocrPatientServiceCache;}
    }
    
  • 系统启动加载
    import lombok.Data;
    import lombok.extern.slf4j.Slf4j;
    import org.springframework.boot.ApplicationArguments;
    import org.springframework.boot.ApplicationRunner;
    import org.springframework.data.redis.listener.RedisMessageListenerContainer;
    import org.springframework.stereotype.Component;import javax.annotation.Resource;/*** 初始化工具类*/
    @Slf4j
    @Data
    @Component
    public class PostApplicationRunner implements ApplicationRunner {@Resourceprivate ProjectConfig projectConfig;@Overridepublic void run(ApplicationArguments args) throws Exception {PrintDcmOcrRecognizeService.init();}
    }
  • 系统启动加载 - 初始化方法
    public class PrintDcmOcrRecognizeService {public static void init() {OcrServiceRegistry.registryMap.put(OcrServiceRegistry.OcrType.TesserOcr, SpringUtils.getBean(TessOcrPatientServiceImpl.class));OcrServiceRegistry.registryMap.put(OcrServiceRegistry.OcrType.PaddleOcr, SpringUtils.getBean(PaddleOcrPatientServiceImpl.class));}
    }
    

三、总结

  1. 类图绘制。
    类图绘制为后期加入的。前期没有做类图中框架的设计,模式的使用是可以是根据业务的需要而做的。在编程中对业务架构中每一个部分做了设计。最后的总结才有了这个样子。类图参照《大话设计模式》一书
    在这里插入图片描述

  2. UML图型使用。
    UML类图中图型的使用是参照《大话设计模式》中UML类讲解 >> | 使用的。

  3. 设计模式理解。
    目前经常用到的设计模式种类不多。基本为工厂、模板、享元、静态代理。设计模式虽多,但不宜滥用,过度设计,因为设计的初衷是根据业务的需要,使得代码更加容易阅读和拓展。

  4. 推荐书籍。
    -《大话设计模式》使用讲Demo的方式有趣介绍了模式的使用,其中的UML类图使用较多
    -《设计模式之美》根据实际业务场景讲解了何时要用到设计模式。内容易懂,对工作帮助比较大 可以在有了设计模式基础后去读一读

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/256263.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【Linux技术宝典】Linux入门:揭开Linux的神秘面纱

文章目录 官网Linux 环境的搭建方式一、什么是Linux&#xff1f;二、Linux的起源与发展三、Linux的核心组件四、Linux企业应用现状五、Linux的发行版本六、为什么选择Linux&#xff1f;七、总结 Linux&#xff0c;一个在全球范围内广泛应用的开源操作系统&#xff0c;近年来越来…

【Linux学习】线程详解

目录 十八.多线程 18.1 线程与进程 18.2 内核视角看待创建线程与进程 18.3 线程优缺点总结 线程的优点&#xff1a; 线程的缺点&#xff1a; 线程的用途&#xff1a; 18.4 线程与进程的联系 十九.线程控制 19.1 POSIX线程库 19.2 线程创建 19.3 线程等待 19.4 线程终止 19.5 线…

ChatGPT高效提问—prompt实践(生成VBA)

ChatGPT高效提问—prompt实践&#xff08;生成VBA&#xff09; 2. 生成VBA函数操作Excel ​ 当前Excel表格数据无背景颜色&#xff0c;区分不明显。假如我们想美化数据展示效果&#xff0c;把标题行设置为浅蓝色&#xff0c;其余奇数行设置为橙色&#xff0c;该怎么操作呢&am…

开启Android学习之旅-1

最近在学习《第一行代码 Android》&#xff0c;两天看书把所有代码都敲了一遍。由于之前没有接触过 Kotlin&#xff0c;导致了囫囵吞枣&#xff0c;跟着书会敲&#xff0c;离开就忘了。Android 大佬开发的各种框架、控件好像大部分都用了 Kotlin。看他们的源码&#xff0c;理解…

AI 消灭软件工程师?| 新程序员

【导读】“AI 是否会取代软件工程师”是自大模型爆火以来程序员们最为关心的一大话题&#xff0c;事关编程的未来与我们每一位程序员。本文作者 Babel CEO、多年的资深程序员张海龙深入技术本质&#xff0c;为我们进行了答疑解惑。 本文精选自《新程序员 007&#xff1a;大模型…

书生谱语-大语言模型测试demo

课程内容简介 通用环境配置 开发机 InterStudio 配置公钥 在本地机器上打开 Power Shell 终端。在终端中&#xff0c;运行以下命令来生成 SSH 密钥对&#xff1a; ssh-keygen -t rsa您将被提示选择密钥文件的保存位置&#xff0c;默认情况下是在 ~/.ssh/ 目录中。按 Enter …

【HTTP】localhost和127.0.0.1的区别是什么?

目录 localhost是什么呢&#xff1f; 从域名到程序 localhost和127.0.0.1的区别是什么&#xff1f; 域名的等级划分 多网站共用一个IP和端口 私有IP地址 IPv6 今天在网上逛的时候看到一个问题&#xff0c;没想到大家讨论的很热烈&#xff0c;就是标题中这个&#xff1a; …

如何把手机平板变为电脑的屏幕

文章目录 安装软件运行效果结尾 本文首发地址 https://h89.cn/archives/181.html 最新更新地址 https://gitee.com/chenjim/chenjimblog 闲置的手机平板、触屏音箱等&#xff0c;均可作为电脑的扩展屏&#xff0c;为电脑增加一块显示屏&#xff0c;本文介绍如何使用免费的软件s…

Linux运用fork函数创建进程

fork函数&#xff1a; 函数原型&#xff1a; pid_t fork(void); 父进程调用fork函数创建一个子进程&#xff0c;子进程的用户区父进程的用户区完全一样&#xff0c;但是内核区不完全一样&#xff1b;如父进程的PID和子进程的PID不一样。 返回值&#xff1a; RETURN VALUEO…

Linux操作系统基础(十三):Linux安装、卸载MySQL

文章目录 Linux安装、卸载MySQL 一、卸载系统自带的mariadb-lib 二、上传安装包并解压 三、按顺序安装 错误1: 错误2: 错误3: 错误4: 四、初始化数据库 五、目录授权&#xff0c;否则启动失败 六、启动msyql服务 七、查看msyql服务的状态 八、在/var/log/mysqld.l…

CTFshow web(php命令执行 55-59)

web55 <?php /* # -*- coding: utf-8 -*- # Author: Lazzaro # Date: 2020-09-05 20:49:30 # Last Modified by: h1xa # Last Modified time: 2020-09-07 20:03:51 # email: h1xactfer.com # link: https://ctfer.com */ // 你们在炫技吗&#xff1f; if(isset($_GET[…

CVE-2018-19518 漏洞复现

CVE-2018-19518 漏洞介绍 IMAP协议&#xff08;因特网消息访问协议&#xff09;它的主要作用是邮件客户端可以通过这种协议从邮件服务器上获取邮件的信息&#xff0c;下载邮件等。它运行在TCP/IP协议之上&#xff0c;使用的端口是143。在php中调用的是imap_open函数。 PHP 的…

C++三剑客之std::optional(一) : 使用详解

相关文章系列 C三剑客之std::optional(一) : 使用详解 C三剑客之std::any(一) : 使用 C之std::tuple(一) : 使用精讲(全) C三剑客之std::variant(一) : 使用 C三剑客之std::variant(二)&#xff1a;深入剖析 目录 1.概述 2.构建方式 2.1.默认构造 2.2.移动构造 2.3.拷贝构…

Docker容器监控-CIG

目录 一、CIG说明 1. CAdvisor 2. InfluxDB 3. Grafana 二、环境搭建 1. 创建目录 2. 编写 docker-compose.yml 3. 检查并运行容器 三、进行测试 1. 查看 influxdb 存储服务 是否能正常访问 2. 查看 cAdvisor 收集服务能否正常访问 3. 查看 grafana 展现服务&#…

智能家居中可自行收集能量的无电池的无线设备

此图片来源于网络 1、背景 ZigBee是一种基于IEEE 802.15.4标准的低速短距离无线通信技术&#xff0c;用于创建个人区域网络。其名称来源于蜜蜂的八字舞&#xff0c;因为蜜蜂通过这种舞蹈来与同伴传递花粉的所在方位信息&#xff0c;从而构成了群体中的通信网络。ZigBee技术具…

AcWing 802. 区间和 离散化

文章目录 题目链接题目描述解题思路代码实现总结 题目链接 链接: AcWing 802. 区间和 题目描述 解题思路 离散化是一种常用的技巧&#xff0c;它能够将原始的连续数值转换为一组离散的值&#xff0c;从而简化问题的处理。在这段代码中&#xff0c;离散化的过程主要分为三个步…

[C/C++] -- CMake使用

CMake&#xff08;Cross-platform Make&#xff09;是一个开源的跨平台构建工具&#xff0c;用于自动生成用于不同操作系统和编译器的构建脚本。它可以简化项目的构建过程&#xff0c;使得开发人员能够更方便地管理代码、依赖项和构建设置。 CMake 使用一个名为 CMakeLists.tx…

sheng的学习笔记-docker部署数据库oracle,mysql

部署目录&#xff1a;sheng的学习笔记-部署-目录-CSDN博客 docker基础知识可参考 sheng的学习笔记-docker部署&#xff0c;原理图&#xff0c;命令&#xff0c;用idea设置docker docker安装数据库 mac版本 安装oracle 下载oracle镜像 打开终端&#xff0c;输入 docker s…

【开源】JAVA+Vue.js实现高校学院网站

目录 一、摘要1.1 项目介绍1.2 项目录屏 二、功能模块2.1 学院院系模块2.2 竞赛报名模块2.3 教育教学模块2.4 招生就业模块2.5 实时信息模块 三、系统设计3.1 用例设计3.2 数据库设计3.2.1 学院院系表3.2.2 竞赛报名表3.2.3 教育教学表3.2.4 招生就业表3.2.5 实时信息表 四、系…

计算机网络——06分组延时、丢失和吞吐量

分组延时、丢失和吞吐量 分组丢失和延时是怎样发生的 在路由器缓冲区的分组队列 分组到达链路的速率超过了链路输出的能力分组等待排到队头、被传输 延时原因&#xff1a; 当当前链路有别的分组进行传输&#xff0c;分组没有到达队首&#xff0c;就会进行排队&#xff0c;从…