Gaussian noise on dicom images

1 view (last 30 days)
Luka Luko
Luka Luko on 14 Jul 2019
Edited: Luka Luko on 15 Jul 2019
I have added Gaussian noise on a DICOM image using the following commands..
B=dicomread('image.dcm');
C=imnoise(B,'guassian');
imshow(C);
But it entirely corrupts the image...when I am doing the same for a .jpg file it does not corrupt the whole image...please help me to solve this problem.... Thank you

Answers (2)

KALYAN ACHARJYA
KALYAN ACHARJYA on 14 Jul 2019
Try
imshow(C,'DisplayRange',[]);
  1 Comment
Luka Luko
Luka Luko on 15 Jul 2019
thank you for your reply, i have already use it but still the same problem with my watermarked medical image of type double..

Sign in to comment.


Image Analyst
Image Analyst on 14 Jul 2019
Try changing the input parameters for imnoise() so that it adds less noise.
Attach your image if you need more help.
  1 Comment
Luka Luko
Luka Luko on 15 Jul 2019
Edited: Luka Luko on 15 Jul 2019
I had already try with a very small value of noise, but still the same problem.. Attached is the image, i'm working with..

Sign in to comment.

Categories

Find more on DICOM Format in Help Center and File Exchange

Products


Release

R2018b

Community Treasure Hunt

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

Start Hunting!