cvpilot-tool/apps/desktop/electron/ipcEvent/alg/index.ts

103 lines
3.6 KiB
TypeScript
Raw Normal View History

// @ts-nocheck
import { downloadSeriesDicomFiles, getTotalScanLength } from "../../core/pacs";
2024-09-23 13:02:38 +08:00
import { executeInferTask } from "../../core/alg";
import { InferDeviceEnum, InferStructuralEnum } from "../../core/alg.type";
import { db } from "../../core/db";
import log from "electron-log";
import path from "node:path";
import { app, ipcMain } from "electron";
2024-10-11 16:26:38 +08:00
import { findSTLFiles, createExcelFile, createPDF } from "./util";
import { readFileSync } from "node:fs";
2024-09-23 13:02:38 +08:00
export const registerAlgHandler = () => {
ipcMain.handle("device:infer:set", async (_event, inferDevice) => {
try {
await db.update(({ setting }) => ({ ...setting, inferDevice }));
return { success: true, msg: `推理硬件修改为${inferDevice}` };
} catch (error) {
await db.update(({ setting }) => ({ ...setting, inferDevice }));
log.error(error);
return { success: false, msg: `操作失败` };
}
});
ipcMain.on("model:infer", async (event, SeriesInstanceUIDs) => {
// 构造推理任务参数列表
const pu = InferDeviceEnum.GPU;
2024-09-24 15:18:16 +08:00
const turbo = true;
2024-09-23 13:02:38 +08:00
const seg_schedule = true;
for (let i = 0; i < SeriesInstanceUIDs.length; i++) {
const SeriesInstanceUID = SeriesInstanceUIDs[i];
const physicalLength = await getTotalScanLength(SeriesInstanceUID);
const module =
physicalLength && physicalLength < 200
? InferStructuralEnum.AORTA
: InferStructuralEnum.PERI;
2024-09-23 13:02:38 +08:00
// 下载dicom到本地获取文件夹路径
const img_path = await downloadSeriesDicomFiles(SeriesInstanceUID);
const save_path = path.join(
app.getPath("userData"),
"output",
SeriesInstanceUID
);
const task = { save_path, pu, module, turbo, seg_schedule, img_path };
console.log("infer task: ", task);
await executeInferTask(task, (data) => {
console.log(data);
event.reply("infer:progress", data);
});
}
});
ipcMain.handle("alg:assets", async (_event, SeriesInstanceUID) => {
const physicalLength = await getTotalScanLength(SeriesInstanceUID);
const module =
physicalLength && physicalLength < 200
? InferStructuralEnum.AORTA
: InferStructuralEnum.PERI;
const rootPath = path.join(
2024-09-23 13:02:38 +08:00
app.getPath("userData"),
"output",
SeriesInstanceUID
);
const stlsPath = path.join(rootPath, module, "visualization");
const stls = await findSTLFiles(stlsPath);
if (stls.length > 0) {
try {
2024-09-29 10:38:08 +08:00
let result = {};
// 读取 STL 文件并转换为 ArrayBuffer
const stlFiles = stls.map((file) => {
const filePath = path.join(stlsPath, file);
const data = readFileSync(filePath);
return {
fileName: file,
data: data.buffer,
};
});
2024-09-23 20:40:58 +08:00
if (module === InferStructuralEnum.AORTA) {
// 读取测量json
2024-09-29 10:38:08 +08:00
const measurementPath = path.join(
rootPath,
module,
"measurement.json"
);
2024-10-09 17:11:41 +08:00
const measurementExcel = path.join(rootPath, "根部测量数据.xlsx");
2024-09-23 20:40:58 +08:00
const measurementData = readFileSync(measurementPath, "utf-8");
2024-10-09 17:11:41 +08:00
// 生成excel
createExcelFile(measurementExcel, JSON.parse(measurementData));
2024-09-29 10:38:08 +08:00
result = { stlFiles, measurement: JSON.parse(measurementData) };
2024-09-23 20:40:58 +08:00
} else if (module === InferStructuralEnum.PERI) {
2024-09-29 10:38:08 +08:00
result = { stlFiles };
2024-09-23 20:40:58 +08:00
}
return { ...result, module };
} catch (error) {
console.error("Error reading measurement.json:", error);
throw new Error("Failed to read or parse measurement.json");
}
2024-09-29 10:38:08 +08:00
} else {
return null;
}
2024-09-23 13:02:38 +08:00
});
};