I found ! Graphics2D g2d = (Graphics2D)g; g2d.setRenderingHint(RenderingHints.KEY_INTERPOLATION,RenderingHints.VALUE_INTERPOLATION_BILINEAR); ...
1005
jimirrer
Dec 27, 2011 11:04 am
Get the image as an array of pixels (Raster): http://docs.oracle.com/javase/1.5.0/docs/api/java/awt/image/BufferedImage.html#getData%28%29 FYI - at this point...
1006
cg85700
Feb 1, 2012 2:50 pm
Hello, We have found a bug with pixelmed when we want to read some double values. You can found a test case who reproduce this bug : import...
1007
dclunie99
Feb 2, 2012 5:27 pm
Interesting one. Turns out I had been lazy about default Locale assumptions in many places, not just number formatting (which is particularly affected by ","...
1008
cg85700
Feb 3, 2012 10:17 am
It's ok with our test case. We try this experimental version with our software during next week....
1009
cg85700
Feb 3, 2012 1:42 pm
Hello, I've created a maven project for pixelmed (on my spare time). It remains for me to fix some bugs on network tests cases (unstoppable execution). Apart...
1010
masialesis
Feb 20, 2012 5:18 pm
Hi David We often have to deal with the "administrative" aspects of dcm data, i.e. Patient, Institution, Physician and Instance UIDs on study/series/image...
1011
amrud
maa_amrud
Feb 22, 2012 11:41 am
Hi zagzaggle regarding the folder hierarchy that u mention before ... did you manage to get it done? currently i'm working on the same projct with PACS i do it...
1012
rogerdelaforet
Mar 14, 2012 4:12 pm
Hello, I try to read Dicom information (like patientName) in Dicom files list. When the file RD is bad, there is an error : "AttributeList.read():...
1013
wwsw3
Mar 15, 2012 6:40 pm
Hi David, We developed a custom de-identification tool using PixelMed and for a long time have just sub-classed DicomImageBlackout to remove PHI within the...
1014
wwsw3
Mar 16, 2012 8:30 pm
Hi, It is hard to say for sure without having the file, but it sounds like the data may be malformed. If the data is, in fact, encoded as Implicit VR, but...
1015
rogerdelaforet
Mar 20, 2012 10:12 am
Hi, The problem is what you say (implicit VR) try { AttributeList attributeList=new AttributeList(); attributeList.read(file); } catch (IOException ex) { ...
1016
rogerdelaforet
Mar 20, 2012 3:18 pm
And I can't specify an attribute to stop reading, because I want to write on my DICOM file, so I must read all the file. (sorry for my wonderful english)...
1017
Anil
anilyavagal
Mar 21, 2012 1:23 pm
I am using dcmodify tool to edit the tags of a dcm file. Erased PatientID at (0010, 0020) and added componentID there for (0010, 0020). Erase the tag:...
1018
wwsw3
Mar 21, 2012 4:19 pm
Anil, This isn't really the appropriate forum, as dcmodify is not part of PixelMed, but part of the DCMTK project. However, the answer to your question is not...
1019
Anil
anilyavagal
Mar 21, 2012 4:19 pm
There is a typo. It should be, Erase the tag: dcmodify.exe -e "(0010,0020)" brain_013.dcm Now if you see the tags, PatientID would not be present. Add it...
1020
Anil
anilyavagal
Mar 22, 2012 11:50 am
Thanks a lot Scott. It cleared a lot of doubts. So all we need is to come up with our dictionary, isn't it. Regards anil...
1021
Anil
anilyavagal
Mar 22, 2012 11:50 am
Scott, This is really helpful. Thanks a lot. It cleared a lot of doubts. So we need not bother about the tag names. Can we update the VR values of the tags? ...
1022
wwsw3
Mar 22, 2012 6:17 pm
Anil, Sorry, I am not very knowledgeable about DICONDE, so I cannot say for sure whether they are using different VR codes. It would seem logical that they...
1023
rogerdelaforet
Apr 7, 2012 12:16 am
Hello, I've tried to retrieve pixel data from a 32 bits dose dicom file but the result is not correct. I analyse the source code and i note that it used byte...
1024
jimirrer
Apr 7, 2012 12:16 am
I am writing a DICOM service that needs to receive DICOM objects and then pass them on to another program. The StorageSOPClassSCPDispatcher supports this, but...
1025
Dan Leehr
leehro
Apr 7, 2012 11:19 am
Hi Jim, Yeah, you'd definitely need custom StorageSOPClassSCPDispatcher and SorageSOPClassSCP classes to get around file paths. In ReceivedObjectHandler,...
1026
jimirrer
Apr 7, 2012 8:42 pm
Thanks for the confirmation. All things considered, it would not be worth the effort for my current project. - Jim...
1027
dclunie99
Apr 8, 2012 2:48 pm
Hi Jim I have been meaning to refactor this for some time, and provide some means to allow StorageSOPClassSCPDispatcher to send to some sort of factory method...
1028
dclunie99
Apr 8, 2012 2:48 pm
Hi Roger It depends on what level in the toolkit you are interested in gaining access to the 32 bit data (which is only used so far in DICOM in RT Dose files)....
1029
dclunie99
Apr 8, 2012 2:48 pm
This doesn't have much to do with the PixelMed toolkit per se, but I will say that most of the DICONDE standard data elements that are new in DICONDE (rather...
1030
dclunie99
Apr 8, 2012 6:49 pm
Hi Roger This sort of thing is indeed usually caused by reading a non-DICOM file, and trying to allocate an excessively large amount of memory for an...
1031
rogerdelaforet
Apr 13, 2012 12:07 pm
Hi david, I want to apply a color palette on my 32 bits dose. So i understand that i can't for the moment.... Perhaps in future ! bye...
1032
mambokiddy
Apr 28, 2012 6:20 am
Hi David, Just like to find out how is the value calculated for (0028,2112) which states the lossy compression ratio? For example, when an image is around 32KB...