Re: Imshow does not show the same image
> when I display the image with imshow(Y), the image displayed is not the same with I> uploaded. What is the reason for that? There is a pretty obvious contrast difference> between the two...
View ArticleRe: Imshow does not show the same image
"Jeff Mather" <jeff.mather@mathworks.com> wrote in message <k4v5be$bhr$1@newscl01ah.mathworks.com>...> > when I display the image with imshow(Y), the image displayed is not the same...
View ArticleRe: Imshow does not show the same image
"Amadeus" wrote in message <k4vd4r$cmc$1@newscl01ah.mathworks.com>...> > > > imshow(Y, [])> > > > Jeff> > Unfortunately it did not solve my problem. Here is the...
View ArticleRe: Imshow does not show the same image
"Image Analyst" wrote in message <k4vnei$ifi$1@newscl01ah.mathworks.com>...> "Amadeus" wrote in message <k4vd4r$cmc$1@newscl01ah.mathworks.com>...> > > > > > imshow(Y,...
View ArticleRe: Imshow does not show the same image
"Amadeus" wrote in message <k4voch$lg8$1@newscl01ah.mathworks.com>...> I really tried imshow(Y,[]). Here are the screenshots:> > [] ->...
View ArticleRe: Imshow does not show the same image
"Image Analyst" wrote in message <k50u2c$nsa$1@newscl01ah.mathworks.com>...> "Amadeus" wrote in message <k4voch$lg8$1@newscl01ah.mathworks.com>...> > I really tried imshow(Y,[])....
View ArticleRe: Error in dicomread: Unsupported data encoding
I can't seem to use dicomread on a file I received. It has a transfer syntax of 1.2.840.10008.1.2.4.51 Is there anyway I can get a workaround on this?
View ArticleRe: Dicomread error: Unsupported data encoding
the same error message I get when I try to read CD written by GE machine (ultrasound) from the station of Impax 'Agfa convert the files on the CD with dicomwork exporting the same files on another cd...
View ArticleDicomread displays different values from CT scan
Hello, I have found uncertain results displyed on my CT data in dicom format. Matlab dicomread has shown just positive values for Hounsfield numbers, however my Syngo software from Siemens has...
View ArticleRe: Dicomread displays different values from CT scan
you should first convert X from uint16 to int 16 and the answer would be: X = dicomread('the file name'); meta = dicominfo('the file name'); Y = int16(X * meta.RescaleSlope) + meta.RescaleIntercept;
View ArticleRe: Memory leak in dicomread
Any chance this cropped back in again in 2014a? I can very reliably crash version 2014a by reading large (500mb-2GB) jpg2000 compressed dicoms that contain many temporal images from a fluoroscopy...
View ArticleRe: Memory leak in dicomread
I also have been getting seg faults with MATLAB2014a. I'll try loading with a different version of MATLAB and see how that goes.
View ArticleRe: read DICOM data from OCT
Hi, were you able to work around this problem? I'm facing the same now best regards Paulo
View ArticleRead 12bit DICOM images
"Avner Mediouni" <amediouni@gmail.com> wrote in message <i29bmj$afe$1@fred.mathworks.com>...> Dear Matlab users,> > I am new to Matlab software. I would like to use matlab to read...
View ArticleRead 12bit DICOM images
> I am getting the same problem of viewing 12 bit dicom image in matlab. Did you get the solution ?? The 12-bit data is held in a 16-bit container, so you need to scale the values for display...
View Article