上一页 1 2 3 4 5 6 7 8 9 ··· 68 下一页
摘要: #ifndef AI_PACS_JSONTOSTRUCT_H #define AI_PACS_JSONTOSTRUCT_H #include <iostream> #include <string> #include <unordered_map> #include <variant> #inclu 阅读全文
posted @ 2024-11-14 15:06 vx_guanchaoguo0 阅读(22) 评论(0) 推荐(0)
摘要: 改标签已经废弃不建议使用 特别是在医学影像如 CT 或 MRI 中 这个标签描述了图像切片的坐标在患者体内的位置 新的替代标签 RT Image Position ((0054,0220))【适用领域: 放射治疗】 描述: 这个标签描述了放射治疗中的影像位置,用于放射治疗中的精确定位。它主要用于记录 阅读全文
posted @ 2024-11-07 17:29 vx_guanchaoguo0 阅读(42) 评论(0) 推荐(0)
摘要: 查找包 find_library(MYSQLCLIENT_LIBRARIES mysqlclient PATH_SUFFIXES mysql) 正常 link include 阅读全文
posted @ 2024-11-05 16:27 vx_guanchaoguo0 阅读(6) 评论(0) 推荐(0)
摘要: 克隆代码 orthanc server hg clone https://orthanc.uclouvain.be/hg/orthanc/ sudo apt-get install curl zip unzip tar cd vcpkg && ./bootstrap-vcpkg.sh mysql i 阅读全文
posted @ 2024-10-14 18:02 vx_guanchaoguo0 阅读(81) 评论(0) 推荐(0)
摘要: cmakelist.txt # Orthanc - A Lightweight, RESTful DICOM Store # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics # Department, University Hos 阅读全文
posted @ 2024-10-12 11:44 vx_guanchaoguo0 阅读(31) 评论(0) 推荐(0)
摘要: 安装 apt install mysql-server; 初始化 mysql_secure_installation 设置密码 set global validate_password_policy=LOW; SET GLOBAL validate_password.length = 6; ALTE 阅读全文
posted @ 2024-09-25 10:49 vx_guanchaoguo0 阅读(242) 评论(0) 推荐(0)
摘要: apt-get install doxygen doxygen-doc doxygen-gui graphviz 阅读全文
posted @ 2024-09-15 16:45 vx_guanchaoguo0 阅读(11) 评论(0) 推荐(0)
摘要: 查看版本 python --version python2 --version python3 --version 修改系统默认python版本 没有正常的 update-alternatives --list python 添加到版本管理 update-alternatives --install 阅读全文
posted @ 2024-09-14 17:40 vx_guanchaoguo0 阅读(115) 评论(0) 推荐(0)
摘要: 同步下载 def download_file_block(url: str, file_path: str): logging.basicConfig(level=logging.DEBUG) log = logging.getLogger('requests.packages.urllib3') 阅读全文
posted @ 2024-09-14 14:15 vx_guanchaoguo0 阅读(68) 评论(0) 推荐(0)
摘要: 不验证证书减少交互 curl -k -f {$url} -o {dest_path} python requests def download_file_with_requests(url: str, file_path: str): with Session() as session: sessi 阅读全文
posted @ 2024-09-14 14:09 vx_guanchaoguo0 阅读(322) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 68 下一页