基于语音识别的智能电子病历(二)苹果端的语音接入

是2011年参与的,俺负责Wav文件处理、FTP通讯和一些后端部分。iPhone/iPad/iPod Recorder 前2年还在APP Store上

说明

Step-by-Step Procedure to Install App and Use the FnetRecorder

Download the App from Apple Store

Launch Apple Store and key in “fnetrecorder”, locate the app, click “Free” button to start downloading and installation

    

 

Install the App in your iPhone/iPad/iPod Touch

Click “Installation” to install the App and you will see it show on screen

           

 

Launch the App and select correct profile for file uploading

Click the App icon to launch the program, you will be prompted to select a profile for voice file uploading, please select the “FNETTRX (FutureNet Transcription” profile. Once you made the selection, the login screen will pop up.

           

 

Login to the App, input correct Account #, User ID and Password

You will get your account #, User ID and Password from your account manager. Once you logged in, the recorder window is available for you to use

         

 Key in patient Mr#, and select correct work type for your dictation

Please key in your patient Mr# for your dictation, if we have interfaced with your system, you can click next to Mr # to search the patient, you also need to select correct work type for your dictation by clicking the  next to Work Type field

Patient Census Search                Work Type Selection

              

 

The selected information will show up, then click “Record” button to start

Once you see the select work type on screen , click  to dictate. You will see the new job# and length of the dictation on screen:

           

 

Click “Finish” button to upload the finished dictation

During the dictation, you can hold the job, or discard, and you can setup priority for it as STAT report. Once you finished, click the

button, the job will be sent to the secure web site for transcription. You will see the uploading process as indicated in the screen capture below. Once it is finished uploading the uploading indicator

will be normal as

.

Prioritizing, holding for additional dictation or discarding dictation

Dictator can easily prioritizing the job before click “Finish” button, and can also holding jobs for further processing, or totally discarding:

The hold job will be in the job list, can be accessed by clicking

           

   

Editing dictation from the job list

You can click the “Edit Voice” button to open the job you selected, and add more dictation or edit your original voice file

After editing, please click “Finish” button to upload the dictation

           

 

Key in patient MR# again to start another dictation

Once the uploading down, you can start another dictation from the App

                           

 

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

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

相关文章

深入理解LibTorch:从安装到API详解

摘要: 本文将详细介绍LibTorch的安装步骤和主要API的使用方法,帮助开发者快速上手并利用LibTorch进行深度学习应用开发。 正文: 一、LibTorch开发背景与优势 PyTorch是一个灵活且功能强大的深度学习框架,它的动态计算图特性使…

golang中空值判断函数,支持任意类型的空值判断

使用反射方式对any任意类型的数据是否为空判断, 可判断时间对象是否为空, 可判断所有数字类型,指针类型和结构体字符串是否为空 判断规则: bool类型因为只有true和false 所以 全部视为非空 nil 类型全部视为空 所有数字类型的 零值全部视为空 对应指针类型数据,只要是非ni…

labview排错

源代码正常跑,应用程序报这个错,是因为源代码的可以找到项目路径内所有dll的路径,而应用程序只能找到data文件夹的dll文件 解决查看源代码中.net的程序集的路径,复制对应的dll到data文件夹下 在执行developinterface.dll出现labv…

学习java第一百一十三天

Spring框架的好处? 轻量级:Spring框架是轻量级的,最基础的版本大约只有2MB。 控制反转(IOC):通过控制反转技术,实现了解耦合。对象给出它们的依赖,而不是创建或查找依赖的对象。 …

雅思词汇及发音积累 2024.6.28

住宿 Student Accommodation Centre 学生住宿管中心 Student Accommodation Officer 学生住宿员 roommate/flatmate/dormmate/housemate 室友 housing coordinator /kəʊˈɔːdɪneɪtə(r)/ 住宿协调员 newspaper advertisement 报纸广告 landlord /ˈlndlɔːd/ 男房东 re…

深入探索Memcached:高效数据检索指南

标题:深入探索Memcached:高效数据检索指南 摘要 Memcached是一个高性能的分布式内存缓存系统,广泛用于提升Web应用程序的性能。它通过缓存数据和减少数据库查询来加速数据检索。本文将详细介绍如何从Memcached中检索数据,包括基…

R1快开门式压力容器操作历年真题含答案

单选题 1.安全联锁装置是用于( )目的的自动化装置,它通过机械或电气的机构使两个动作具有互相制约的关系。 A、自动化 B、安全(正确答案) 2.卡箍式快开门的安全连锁实现较为( )。 A、容易 B、困难(正确答案) 3.…

Python+Pytest+Allure+Yaml+Jenkins+GitLab接口自动化测试框架详解

PythonPytestAllureYaml接口自动化测试框架详解 编撰人:CesareCheung 更新时间:2024.06.20 一、技术栈 PythonPytestAllureYamlJenkinsGitLab 版本要求:Python3.7.0,Pytest7.4.4,Allure2.18.1,PyYaml6.0 二、环境配置 安装python3.7&…

Python operator模块这么用,效率杠杠的!

目录 1、基础操作符应用 🐍 1.1 加载operator模块 1.2 使用itemgetter进行排序 1.3 attrgetter与方法调用 2、高级功能探索 🔍 2.1 methodcaller的妙用 2.2 操作符重载与定制 3、结合lambda表达式 ✨ 3.1 lambda与operator模块协同工作 3.2 实战案例分析 4、结合…

【Spring Boot 事务管理】

Spring Boot 事务管理 一、Spring Boot中的事务管理1.声明式事务管理Transactional注解基本使用配置选项 2.编程式事务管理TransactionTemplatePlatformTransactionManager 二、Transactional注解深入1.基本使用基本属性 2.传播行为3.隔离级别4.事务超时设置5.回滚规则 三、事务…

如何保护磁盘数据?电脑磁盘数据怎么保护?

电脑磁盘是存储数据的基础,可以将各种重要数据保存在其中。为了避免数据泄露,我们需要保护磁盘数据。那么,电脑磁盘数据怎么保护呢?下面我们就一起来了解一下吧。 文件夹加密超级大师 文件夹加密超级大师是一款优秀的电脑数据加密…

人工智能 (AI) 基本概念 入门篇【C#】版

1. 什么是人工智能? 人工智能(Artificial Intelligence, AI)是指计算机系统能够执行通常需要人类智能的任务,如视觉识别、语音识别、决策和语言翻译等。AI的核心是通过算法和数据进行学习和推理,以实现智能行为。 2.…

说说MQ在你项目中的应用(二)商品支付

看了不少关于MQ的文章,也对MQ的作用做了一些总结。通常来说MQ有三大功能:异步处理、系统解耦和流量削峰。但我觉得这些功能本质上都是围绕着异步这个核心来的,只是针对不同的业务场景做了些调整。 现在市面上常用的MQ中间件,如Ra…

每天一个数据分析题(三百九十八)- 逻辑回归

逻辑回归的输出概率在[0,1]的范围内,逻辑回归使用以下哪个函数来实现概率转换? A. Sigmoid B. 求模 C. 平方 D. 几率单位 数据分析认证考试介绍:点击进入 题目来源于CDA模拟题库 点击此处获取答案 数据分析专项练习题库 内容涵盖Pyth…

力扣爆刷第154天之TOP100五连刷36-40(最长公共子序列、二分、二叉树右视图)

力扣爆刷第154天之TOP100五连刷36-40(最长公共子序列、二分、二叉树右视图) 文章目录 力扣爆刷第154天之TOP100五连刷36-40(最长公共子序列、二分、二叉树右视图)一、1143. 最长公共子序列二、94. 二叉树的中序遍历三、82. 删除排…

如何查看端口是否开放

如何查看端口是否开放 大家好,我是免费搭建查券返利机器人省钱赚佣金就用微赚淘客系统3.0的小编,也是冬天不穿秋裤,天冷也要风度的程序猿!在网络通信中,端口的开放状态对于应用程序的正常运行至关重要。本文将详细介绍…

Redis 7.x 系列【12】数据类型之基数统计(HyperLogLog)

有道无术,术尚可求,有术无道,止于术。 本系列Redis 版本 7.2.5 源码地址:https://gitee.com/pearl-organization/study-redis-demo 文章目录 1. 概述2. 常用命令2.1 PFADD2.2 PFCOUNT2.3 PFMERGE 3. 应用场景 1. 概述 基数表示数…

static关键字在Java中的作用

static关键字在Java中的作用 大家好,我是免费搭建查券返利机器人省钱赚佣金就用微赚淘客系统3.0的小编,也是冬天不穿秋裤,天冷也要风度的程序猿!今天我们将深入探讨Java中的static关键字及其作用。static是Java中一个非常重要的关…

关于 Qt4Qt5迁移至Qt6出现QDesktopWidget和QApplication::desktop()删除后兼容Qt6 的解决方法

若该文为原创文章,转载请注明原文出处 本文章博客地址:https://hpzwl.blog.csdn.net/article/details/140036861 长沙红胖子Qt(长沙创微智科)博文大全:开发技术集合(包含Qt实用技术、树莓派、三维、OpenCV…

【QT】QTableView使用

目录 QTableView是什么QTableView、QStandardItemModel、QStyledItemDelegate区别QTableViewQStandardItemModelQStyledItemDelegate总结 example参考文章 QTableView是什么 QTableView是Qt框架中用于显示和编辑二维表格数据的类。它提供了一个可视化的表格界面,允许…