how to display images from a nifti file?
11 次查看(过去 30 天)
显示 更早的评论
I have a liver CT dataset where all images is in .nii file format. Each image file has mulitple slices (say 512*512*500). Using niftiread command i read the image file and now I am visualizing each of the 500 slices one by one using imshow command.
imshow(i = Y(:,:,400)) %400 is my current slice number
Now my image 'i' is class int16 and has values from 0 to 2328. I think these values are Hounsfield units (HU). My image 'i' is like below, where i couldnt see any fine details from the image.
When i referred a paper they said as, 'the Hounsfield unit is applied in window range [100, 400] and then after some pre-processing steps the image is visualized.
how can i do that to bring my image 'i' like a normal CT image?
1 个评论
Manjunath R V
2021-4-29
Hello emerson can i get a code for hounsfield unit and to enhance the contrast of an ct image
回答(3 个)
KALYAN ACHARJYA
2019-9-4
编辑:KALYAN ACHARJYA
2019-9-4
Read the individuals slices and convert them to binary, is there any issue?
slice_test=Y(:,:,400) % Just as example of slice number 400
bw_image=imbinarize(slice_test,method);
%...............................^ any specifice method,
% or delete method part, Matlab use for default Method
2 个评论
KALYAN ACHARJYA
2019-9-5
Yes, the u result images are not binary image, do contrast streching (Gray Level Transformation), do check. I will reply in afternoon session
Manjunath R V
2021-3-26
even i want clarification like how to apply hounsifield unit to ct image ? for better details
2 个评论
Manjunath R V
2021-4-25
编辑:Manjunath R V
2021-4-25
am working on liver segmentation on CT dataset i need a help regarding labeling of a image since am using sementic segmentation
imDir = fullfile(dataSetDir,'Inp_256'); this is my input original dataset or training data
input image attached here for ref
pxDir = fullfile(dataSetDir,'lab256'); this is my labeled data of the training data
labeled image for the input image attached here
this dataset i found in 3DIRCADB where it contains both training data as well as labeled images and masks for that training data
now my query is to train my network i should use oly training data as well as labelled data rite?
is labelled data whatever they have given is it enough to train my network
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!