摘要: 一,前戏 1.1 进程调度 内存中保存了对每个进程的唯一描述, 并通过若干结构与其他进程连接起来. 调度器面对的情形就是这样, 其任务是在程序之间共享CPU时间, 创造并行执行的错觉, 该任务分为两个不同的部分, 其中一个涉及调度策略, 另外一个涉及上下文切换. 1.2 进程的分类 linux把进程 阅读全文
posted @ 2024-08-21 12:42 vx_guanchaoguo0 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 修改脚本地址 PS C:\ProgramData\chocolatey\lib\nvm.install\tools\ChocolateyInstall.ps1 阅读全文
posted @ 2024-11-15 14:36 vx_guanchaoguo0 阅读(1) 评论(0) 推荐(0) 编辑
摘要: #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 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 改标签已经废弃不建议使用 特别是在医学影像如 CT 或 MRI 中 这个标签描述了图像切片的坐标在患者体内的位置 新的替代标签 RT Image Position ((0054,0220))【适用领域: 放射治疗】 描述: 这个标签描述了放射治疗中的影像位置,用于放射治疗中的精确定位。它主要用于记录 阅读全文
posted @ 2024-11-07 17:29 vx_guanchaoguo0 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 查找包 find_library(MYSQLCLIENT_LIBRARIES mysqlclient PATH_SUFFIXES mysql) 正常 link include 阅读全文
posted @ 2024-11-05 16:27 vx_guanchaoguo0 阅读(0) 评论(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 阅读(15) 评论(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 阅读(8) 评论(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 阅读(32) 评论(0) 推荐(0) 编辑
摘要: apt-get install doxygen doxygen-doc doxygen-gui graphviz 阅读全文
posted @ 2024-09-15 16:45 vx_guanchaoguo0 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 查看版本 python --version python2 --version python3 --version 修改系统默认python版本 没有正常的 update-alternatives --list python 添加到版本管理 update-alternatives --install 阅读全文
posted @ 2024-09-14 17:40 vx_guanchaoguo0 阅读(14) 评论(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 阅读(11) 评论(0) 推荐(0) 编辑