At the bottom is a JUnit Test Snippet. I loaded a dicom file (AttributeList), make some modification (create Attributes) and tried to save it. I do not set a...
920
dclunie99
Feb 11, 2011 6:46 pm
I don't build on Windows myself, but if I had to I would use CygWin which supports make. Sorry I am primitive and don't supply ant build files or use an IDE. ...
921
dclunie99
Feb 11, 2011 6:55 pm
You have to supply the specificCharacterSet in the constructor for TextAttribute and its subclasses if you are going to use values other than US-ASCII. To use...
922
alexen.port
Feb 11, 2011 6:56 pm
Did you already tried it with cygwin? It is enought to install cygwin and run make on that directory? Please, with is the best environment to build it? And...
923
dclunie99
Feb 11, 2011 6:57 pm
I haven't tried it with Cygwin for ages, but it should work (I use Cygwin for the windows compilation of dicom3tools). The best environment is of course a Mac...
924
sputnik009
Feb 13, 2011 8:30 pm
Hallo again, ... I have tried: SpecificCharacterSet defaultScs = new SpecificCharacterSet( new String[] { "ISO_IR 192" }); LongTextAttribute lta = new...
925
dclunie99
Feb 13, 2011 8:46 pm
Your right, both TextAttribute and StringAttribute are completely screwed up in this respect. I will fix them both. David...
Hi Jim It should compile on Java 5 ... let me know if it doesn't. VMS, seriously ? What hardware ? I used to love VMS. David...
928
Jim Irrer
jcirrer
Feb 14, 2011 8:26 pm
David - I have not actually tried to compile it using Java 5, it may very well work. If I do, it will be compiled on MS (my employer forces me to use it) and...
929
sputnik009
Feb 15, 2011 3:52 pm
Hallo, i have tried your fix and it works for me. And it seems much better than my workaround. Thank you...
930
rafzio
Feb 28, 2011 4:26 pm
Hallo, I'm newbe, I've tried to load an Image from a dicom file. I've got a BufferedImage object from SourceImage object, but the BufferedImage is displayed...
931
dclunie99
Feb 28, 2011 4:59 pm
If it is a > 8 bit grayscale image, are you windowing it ? David...
932
rafzio
Mar 1, 2011 1:00 pm
Yes it is a 16 bit grayscale image. What do you mean with "windowing", I show it in a JPanel (I'm painting it in paintcomponent method). When You mean applying...
933
dclunie99
Mar 1, 2011 1:06 pm
Well then, that is your answer. You can use one of the appropriate methods in com.pixelmed.display.WindowCenterAndWidth. David...
934
rafzio
Mar 1, 2011 7:58 pm
Menawhile, I've discovered class SimpleImagePanel. If I start program that creates JFrame and adds SimpleImagePanel object, then I can see the image. But if I...
935
rafzio
Mar 1, 2011 7:58 pm
Thanks for answer. I've found the methods, but I'm not sure how to use it. The definition is public static final BufferedImage...
936
rafzio
Mar 7, 2011 5:16 pm
Hallo, How could I read values for tags in a Dicom file? Is there a documentation for pixelmed other than javadoc? with regards Rafal Ziolkowski...
937
masterbdi
Mar 10, 2011 2:42 pm
Hello group! I'm trying to change the personal values(PatientID, LastName, etc) to anonymize them in the SCP file but I am not sure if I can do it with the...
938
atif_azad
Mar 15, 2011 7:31 pm
Hello All, While trying to de-identify a file, I get the following message at Standard Error: OtherWordAttributeOnDisk.write(): start file = xyz where xyz is...
939
dclunie99
Mar 15, 2011 7:32 pm
You can ignore this; it is just a debugging message; I will turn it off in the next release. David...
940
dclunie99
Mar 15, 2011 7:39 pm
No, there is no SCP-ECG write capability in the toolkit; the read capability was only added to provide conversion to DICOM. That said, there might be enough...
941
dclunie99
Mar 15, 2011 7:49 pm
Hi Rafal ... try { AttributeList list = new AttributeList(); list.read(inputFileName); String patientName =...
942
dclunie99
Mar 15, 2011 7:59 pm
You might want to look at how com.pixelmed.display.SingleImagePanel establishes these, given a com.pixelmed.display.SourceImage, and in particular the method...
943
rafzio
Mar 16, 2011 1:39 pm
Thank You, meanwhile I've discovered the SingleImagePanel class in display package, so I could see how to manage this. It's a pity, that there is no in depth...
944
Atif.Azad
atif_azad
Mar 16, 2011 1:40 pm
Hi, Basic application level confidentiality profile is described on pages 13-14 of Supplement 55: Attribute Level Confidentiality (including De-identification)...
945
dclunie99
Mar 16, 2011 1:50 pm
Hi Atif See com.pixelmed.dicom.UniqueIdentifierAttribute.isTransient(), which is the key to deciding whether a UID attribute is transient (to be dealt with) or...
946
dclunie99
Mar 16, 2011 1:52 pm
Hi Rafal ... Yes, it is. I actually started the toolkit as a means of illustrating DICOM implementation in a book about the subject, but the toolkit became an...
947
Atif.Azad
atif_azad
Mar 18, 2011 4:33 pm
Hi David, Thanks for that very informative response. That begs another question that your expert insight can help in: Supplement 142 says that: "For example,...
948
masterbdi
Mar 24, 2011 10:55 am
Hi, I'm trying to get QT-corrected, P-axis, QRS-axis, T-axis, P-duration from a DICOM file but I don't know how to do it with PixelMed. Can anyone help me? ...