DicomViewer (添加模型类)3

背景

上一篇新建了目录,这一篇读取dcm文件,先从模型开始。

.h 也加入到SRC

diff 复制代码
ubuntu@LAPTOP-IAHSQH9B:~/xcyxiner/DicomViewer$ git diff HEAD gen_src.py

diff --git a/gen_src.py b/gen_src.py
index 974a548..86dfdb5 100644
--- a/gen_src.py
+++ b/gen_src.py
@@ -3,7 +3,7 @@ import os
 src = []
 for root, _, files in os.walk("source"):
     for f in files:
-        if f.endswith(".cpp"):
+        if f.endswith((".cpp",".h")):
             src.append(os.path.join(root, f))

 with open("source_list.cmake", "w") as f:

新的生成工具

之前的生成的是基于QT对象的,现在需要纯c对象的。

新增new_c_class.py

ini 复制代码
#!/usr/bin/env python3
import sys
import pathlib

CLASS_NAME = sys.argv[1]

HEADER = f"""
#pragma once

class {CLASS_NAME}
{{
public:
    explicit {CLASS_NAME}();
    ~{CLASS_NAME}()=default;
}};
"""

CPP = f"""
#include "{CLASS_NAME}.h"

{CLASS_NAME}::{CLASS_NAME}()
{{
}}
"""

pathlib.Path(f"{CLASS_NAME}.h").write_text(HEADER)
pathlib.Path(f"{CLASS_NAME}.cpp").write_text(CPP)

print(f"✅ Generated {CLASS_NAME}.h / {CLASS_NAME}.cpp")

更新dcmtk的类库链接 以及包含头文件

makefile 复制代码
target_include_directories(DicomViewer_exe PRIVATE
/opt/dcmtk/include
)

  
DCMTK::ofstd
DCMTK::oflog
DCMTK::dcmdata
DCMTK::dcmimgle
DCMTK::dcmimage
DCMTK::dcmjpeg
DCMTK::dcmnet
DCMTK::dcmsr

更新.clangd

arduino 复制代码
- "-I/opt/dcmtk/include"

添加依赖的时候好找一点

新建文件

使用new_c_class.py创建模型和控制类 使用new_qt_object.py创建文件导入类

bash 复制代码
python ~/xcyxiner/DicomViewer/tools/new_c_class.py Patient
python ~/xcyxiner/DicomViewer/tools/new_c_class.py Study
python ~/xcyxiner/DicomViewer/tools/new_c_class.py Series
python ~/xcyxiner/DicomViewer/tools/new_c_class.py Image
python ~/xcyxiner/DicomViewer/tools/new_c_class.py DicomReader
python ~/xcyxiner/DicomViewer/tools/new_c_class.py CoreRepository
python ~/xcyxiner/DicomViewer/tools/new_c_class.py CoreController
python ~/xcyxiner/DicomViewer/tools/new_qt_object.py FilesImporter QThread
css 复制代码
.
├── core
│   ├── controller
│   │   ├── CoreController.cpp
│   │   └── CoreController.h
│   ├── lib
│   │   ├── DicomReader.cpp
│   │   └── DicomReader.h
│   └── model
│       ├── CoreRepository.cpp
│       ├── CoreRepository.h
│       ├── Image.cpp
│       ├── Image.h
│       ├── Patient.cpp
│       ├── Patient.h
│       ├── Series.cpp
│       ├── Series.h
│       ├── Study.cpp
│       └── Study.h
├── gui
│   ├── GUICenter.cpp
│   └── GUICenter.h
├── lib
│   ├── FilesImporter.cpp
│   └── FilesImporter.h
├── main.cpp
├── menu
│   ├── FileMenu.cpp
│   └── FileMenu.h
└── window
    ├── GUIWindow.cpp
    └── GUIWindow.h

9 directories, 23 files

QThread 不能使用QWidget,改为parent类型为QObject,需要修改.h和.cpp

arduino 复制代码
#include "FilesImporter.h"

#include "qglobal.h"
#include "qobject.h"

FilesImporter::FilesImporter(QObject* parent)
    : QThread(Q_NULLPTR)
{
}

#pragma once
#include <QThread>

#include "qobject.h"

class FilesImporter : public QThread
{
  Q_OBJECT
public:
  explicit FilesImporter(QObject* parent = nullptr);
};

编译测试没问题先提交

添加模型类以及控制器

未完待续

相关推荐
皓悦编程记7 小时前
【YOLO26 系列】基于YOLO26的垃圾分类检测系统【python源码+Pyqt5界面/WEB+数据集+训练代码】
python·qt·分类
十五年专注C++开发13 小时前
qobject_cast转换失败原因分析
c++·qt·dynamic_cast·qobject_cast
sycmancia13 小时前
Qt——线程的生命期问题
开发语言·qt
闻道且行之1 天前
TurboOCR:基于PP-OCRv6的极速Windows离线OCR工具,深度解析3.4GB依赖背后的技术架构
c++·人工智能·python·qt·机器学习·ocr
气概1 天前
QT集成basler相机
开发语言·数码相机·qt
GIS阵地2 天前
QgsRasterDataProvider 完整详解(QGIS 3.40.13 C++)
开发语言·c++·qt·开源软件·qgis
sycmancia2 天前
Qt——多线程中的信号与槽(二)
jvm·qt
Quz3 天前
QML Label 完整用法与 Text 组件选型
前端·qt
kaixin_learn_qt_ing3 天前
QPluginLoader
qt
kaixin_learn_qt_ing4 天前
Qt 提升部件(Promote)找不到头文件路径
qt