window64位版下载地址:
Orthanc downloadsDownloads that are available from the Orthanc project.
https://orthanc.uclouvain.be/downloads/windows-64/installers/index.html
OHIF顶级开源WEB影像浏览器相关地址:
https://viewer.ohif.org/
https://v3p10.docs.ohif.org/
https://github.com/OHIF/Viewers (多次尝试才能打开)
Orthanc自带了OHIF影像浏览器,不用单独安装,了解一下即可。
开始安装Orthanc
Orthanc安装:OrthancInstaller-Win64-26.6.1.exe
设置Dicom文件上传保存路径:
安装完成后多了一个服务:
打开本地浏览器:
http://127.0.0.1:8042/app/explorer.html
配置MYSQL8.4:(8.4一直登录不上,不能自动建表,换成mysql8.0就好了)
-- 创建数据库,utf8mb4完整支持中文 CREATE DATABASE orthanc CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; -- 不需要单独用户,则不创建 -- 创建本地专用用户 CREATE USER 'orthanc'@'localhost' IDENTIFIED BY 'Orthanc@123456'; -- 授权全权限 GRANT ALL PRIVILEGES ON orthanc.* TO 'orthanc'@'localhost'; FLUSH PRIVILEGES; exit;配置mysql.json,后重启Orthanc服务就会自动建表无需要其他改动。
自动建的表:
上传一些影像,就可以在线看了。
多窗位联动:
三维重建功能:
多种web阅片方式:
使用OHIF列表方式查看:
http://127.0.0.1:8042/ohif/
MyOrthanc中文浏览界面:
http://127.0.0.1:8042/ui/app/
REST API of Orthanc REST API of Orthanc — Orthanc Book documentation
$ curl http://localhost:8042/patients $ curl http://localhost:8042/studies $ curl http://localhost:8042/series $ curl http://localhost:8042/instances官方配置文档:
Advanced Storage Plugin — Orthanc Book documentationhttps://orthanc.uclouvain.be/book/plugins/advanced-storage.html
增加插件:
扩展存储:
自定义文件保存路径和文件名称:
扩展DLL下载地址:
Orthanc downloadsDownloads that are available from the Orthanc project.https://orthanc.uclouvain.be/downloads/windows-64/orthanc-advanced-storage/index.html