フィルターのクリア

load series of DICOM and convert it to volume to use volume viewer

1 回表示 (過去 30 日間)
eran bamani
eran bamani 2020 年 5 月 28 日
コメント済み: Rik 2020 年 5 月 28 日
Hi everyone,
I want to segmentation a 3D image, I have a series of DICOM CT scans and I want to convert it to volume image and to load it with volume viewer to do segmentation.
Can Someone knows such work?
  1 件のコメント
Rik
Rik 2020 年 5 月 28 日
Have you looked on the file exchange? There are dozens of readers and 3D viewers.

サインインしてコメントする。

回答 (1 件)

Subhadeep Koley
Subhadeep Koley 2020 年 5 月 28 日
Refer the example code below,
close all; clc;
% Load the demo DICOM image
[X, map] = dicomread('US-PAL-8-10x-echo.dcm');
% Display the DICOM image
montage(X, map, 'Size', [2 5])
% Remove dimensions of length 1
X = squeeze(X);
% Launch volume viewer
volumeViewer(X)
% K-means clustering based volume segmentation
L = imsegkmeans3(X, 3);
% Visualize the segmented volume
volumeViewer(L)
Hope this helps!
  9 件のコメント
eran bamani
eran bamani 2020 年 5 月 28 日
Thank you Rik, You are right.
I try with with a lot code version but it didn't work.
Rik
Rik 2020 年 5 月 28 日
'it didn't work' is not helping us to solve your issue. What release of Matlab are you using, what exact code are you running, and what is the exact and complete error message?

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeDICOM Format についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by