补充DICOM与语义分类调整说明
- 在软著说明书中补充DICOM影像序列可进入分割工作区处理、切片浏览和标注导出的说明。 - 新增DICOM工作区和切换切片高清截图。 - 补充右侧语义分类树可查看分类、控制显示、调整选中遮罩分类的功能介绍。 - 新增语义分类树调整遮罩类别前后截图。 - 更新功能验证与素材清单,并扩展核心素材录制脚本覆盖DICOM与语义分类调整。
This commit is contained in:
@@ -48,6 +48,13 @@ async function openWorkspace(page) {
|
||||
await sleep(2200);
|
||||
}
|
||||
|
||||
async function openProject(page, name) {
|
||||
await clickTitle(page, '项目库', 800);
|
||||
await page.getByText(name).first().click();
|
||||
await page.waitForLoadState('networkidle').catch(() => {});
|
||||
await sleep(1800);
|
||||
}
|
||||
|
||||
async function canvasBox(page) {
|
||||
const canvas = page.locator('.konvajs-content canvas').first();
|
||||
const box = await canvas.boundingBox();
|
||||
@@ -116,6 +123,12 @@ async function captureCoreScreenshots() {
|
||||
await clickTitle(page, '项目库', 800);
|
||||
await shot(page, '39-project-library-refreshed.png');
|
||||
|
||||
await openProject(page, '演视DICOM序列');
|
||||
await shot(page, '45-dicom-workspace-main.png');
|
||||
await page.getByText('0005').first().click().catch(() => {});
|
||||
await sleep(900);
|
||||
await shot(page, '46-dicom-frame-switched.png');
|
||||
|
||||
await openWorkspace(page);
|
||||
await shot(page, '24-workspace-current-frame-timeline.png');
|
||||
|
||||
@@ -132,6 +145,12 @@ async function captureCoreScreenshots() {
|
||||
await shot(page, '26-create-polygon-completed.png');
|
||||
await drawRectangleMask(page);
|
||||
await shot(page, '40-workspace-rectangle-mask.png');
|
||||
await shot(page, '47-semantic-tree-selected-mask-before.png');
|
||||
await page.getByRole('button', { name: /下颌骨|甲状腺|气管/ }).first().click().catch(async () => {
|
||||
await page.getByText('下颌骨').first().click().catch(() => {});
|
||||
});
|
||||
await sleep(700);
|
||||
await shot(page, '48-semantic-tree-change-category.png');
|
||||
await drawBrushStroke(page);
|
||||
await shot(page, '41-workspace-brush-mask.png');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user