Freehand Masking a DICOM image?

2 次查看(过去 30 天)
Is it possible to freehand mask a DICOM image? I have located a demo from another thread from Image Analyst, however it uses a Matlab demo image. I was wondering if it were possible to locate and use a DICOM image in this demo code for freehand masking? Thanks.

采纳的回答

Jamie Szabo
Jamie Szabo 2019-10-2
Nevermind! Have sorted it out! Thanks.

更多回答(1 个)

awezmm
awezmm 2019-10-1
Yes it is possible to use imfreehand on any image.
  1 个评论
Jamie Szabo
Jamie Szabo 2019-10-1
Sorry I should have been more specific.
I'm using a demo with the following code.
% Read in a standard MATLAB gray scale demo image.
folder = fileparts(which('cameraman.tif')); % Determine where demo folder is.
baseFileName = 'cameraman.tif';
% Get the full filename, with path prepended.
fullFileName = fullfile(folder, baseFileName);
% Check if file exists.
if ~exist(fullFileName, 'file')
% File doesn't exist -- didn't find it there. Check the search path for it.
fullFileName = baseFileName; % No path this time.
if ~exist(fullFileName, 'file')
% Still didn't find it. Alert user.
errorMessage = sprintf('Error: %s does not exist in the search path folders.', fullFileName);
uiwait(warndlg(errorMessage));
return;
end
end
grayImage = imread(fullFileName);
imshow(grayImage, []);
axis on;
title('Original Grayscale Image', 'FontSize', fontSize);
set(gcf, 'Position', get(0,'Screensize
')); % Maximize figure.
However, I want the image to be one of my own which is a DICOM image. However, it says the file extension is not recognised when I use it. Is there anyway I can swap in my own DICOM image? Thanks

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 DICOM Format 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by