Search found 8 matches

by okigan
Fri, 2010-01-08, 21:38
Forum: DICOMscope - Installation
Topic: DICOMScope3.6 cannot be installed on Windows 7
Replies: 1
Views: 15154

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 ---------------------...
by okigan
Mon, 2008-01-28, 23:06
Forum: DICOMscope - General
Topic: DICOMScope ignores flip/rotation in DisplayArea Sq
Replies: 3
Views: 12825

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...
by okigan
Fri, 2008-01-25, 02:02
Forum: DICOMscope - General
Topic: DICOMScope ignores flip/rotation in DisplayArea Sq
Replies: 3
Views: 12825

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
by okigan
Wed, 2006-04-12, 00:24
Forum: DCMTK - General
Topic: DICOMDIR (again)
Replies: 2
Views: 4345

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...
by okigan
Wed, 2006-03-15, 02:05
Forum: DCMTK - General
Topic: tag offset in file
Replies: 4
Views: 5839

J?rg, This is specifically about pixel data (and only a subset of data types) but if I could know the offset of the pixel data from the beginning of the file I would work with many files in much more memory efficient manner (I would take care of intercept & offset). I could write the parser myse...
by okigan
Mon, 2006-03-13, 19:25
Forum: DCMTK - General
Topic: tag offset in file
Replies: 4
Views: 5839

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
by okigan
Tue, 2005-07-19, 19:30
Forum: DCMTK - General
Topic: (very) Minor const correctness change in dcdict.cxx
Replies: 3
Views: 5820

Sorry for beating the dead horse.

I did check the that I am using the 3.5.3 release. Is anon-read-only CVS access available ?

Thanks,
Igor
by okigan
Tue, 2005-07-19, 00:06
Forum: DCMTK - General
Topic: (very) Minor const correctness change in dcdict.cxx
Replies: 3
Views: 5820

(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