Search found 8 matches
- Fri, 2010-01-08, 21:38
- Forum: DICOMscope - Installation
- Topic: DICOMScope3.6 cannot be installed on Windows 7
- Replies: 1
- Views: 25217
DICOMScope3.6 cannot be installed on Windows 7
Running dswin360.exe produces following error: --------------------------- Setup Initialization Error --------------------------- Setup is unable to find installation languages in C:\Users\Igor\AppData\Local\Temp\dswin360\SETUP.LID file. Error 105 --------------------------- OK ---------------------...
- Mon, 2008-01-28, 23:06
- Forum: DICOMscope - General
- Topic: DICOMScope ignores flip/rotation in DisplayArea Sq
- Replies: 3
- Views: 14140
It was misunderstanding on my part thinking (0070,0041) (0070,0042) can convey which rotation is applied to the image ? advantage of which would be that one GSPS DICOM Instance could specify different rotation/flip for different images. Can DICOMScope generate GSPS which specifies different rotation...
- Fri, 2008-01-25, 02:02
- Forum: DICOMscope - General
- Topic: DICOMScope ignores flip/rotation in DisplayArea Sq
- Replies: 3
- Views: 14140
DICOMScope ignores flip/rotation in DisplayArea Sq
Looks like DICOMScope ignores flip/rotation in DisplayArea Sq from tags (0070,0052) and (0070,0053).
but uses only on the (0070,0041) (0070,0042) tags.
Is this a bug in DICOMScope or did I miss something?
Regards
but uses only on the (0070,0041) (0070,0042) tags.
Is this a bug in DICOMScope or did I miss something?
Regards
- Wed, 2006-04-12, 00:24
- Forum: DCMTK - General
- Topic: DICOMDIR (again)
- Replies: 2
- Views: 4830
DICOMDIR (again)
Creation of DICOMDIR takes quite a bit of time. Seems one of the reasons might be double read of the dicom file. First time in the DicomDirInterface class then in DcmDirectoryRecord (fillElementsAndReadSOP function). In documentation there is a hint that addDicomFile could take a yet not existing fi...
- Wed, 2006-03-15, 02:05
- Forum: DCMTK - General
- Topic: tag offset in file
- Replies: 4
- Views: 6615
- Mon, 2006-03-13, 19:25
- Forum: DCMTK - General
- Topic: tag offset in file
- Replies: 4
- Views: 6615
tag offset in file
Given a DICOM file what would a fast way to find out the location of a specific tag in it
(i.e. the offset of the tag from the begining of the file)?
Thanks,
Igor
(i.e. the offset of the tag from the begining of the file)?
Thanks,
Igor
- Tue, 2005-07-19, 19:30
- Forum: DCMTK - General
- Topic: (very) Minor const correctness change in dcdict.cxx
- Replies: 3
- Views: 6626
- Tue, 2005-07-19, 00:06
- Forum: DCMTK - General
- Topic: (very) Minor const correctness change in dcdict.cxx
- Replies: 3
- Views: 6626
(very) Minor const correctness change in dcdict.cxx
Seems like
splitFields(const char* line, char* fields[], int maxFields, char splitChar)
{
char* p;
should be:
splitFields(const char* line, char* fields[], int maxFields, char splitChar)
{
const char* p;
VS2005 is being somewhat vocal on this.
Thanks for great work and regards,
Igor
splitFields(const char* line, char* fields[], int maxFields, char splitChar)
{
char* p;
should be:
splitFields(const char* line, char* fields[], int maxFields, char splitChar)
{
const char* p;
VS2005 is being somewhat vocal on this.
Thanks for great work and regards,
Igor