Search found 6 matches

by Bartek
Thu, 2016-08-04, 22:51
Forum: DCMTK - General
Topic: Live stream of raw data to dicom file
Replies: 12
Views: 14376

Re: Live stream of raw data to dicom file

Unfortunately, it means that I need to use another format.

Thank you very much for support.
Take care guys!

Best regards,
Bartek
by Bartek
Thu, 2016-08-04, 18:18
Forum: DCMTK - General
Topic: Live stream of raw data to dicom file
Replies: 12
Views: 14376

Re: Live stream of raw data to dicom file

I see. I would like to be sure, could you confirm my questions from my previous post?

Thanks,
Bartek.
by Bartek
Mon, 2016-08-01, 16:23
Forum: DCMTK - General
Topic: Live stream of raw data to dicom file
Replies: 12
Views: 14376

Re: Live stream of raw data to dicom file

Also note that regular DICOM files are not bigger than 4 GB which is no problem for current systems so there are no problems with the most common cases (apart from DICOM pathology files, for example), and corner cases where people want to create huge compressed images... (where Concatenations may b...
by Bartek
Fri, 2016-07-29, 20:09
Forum: DCMTK - General
Topic: Live stream of raw data to dicom file
Replies: 12
Views: 14376

Re: Live stream of raw data to dicom file

Yes, everything is stored in RAM. Hm... I wonder what is the reason of this approach? This is just DCMTK implementation, or DICOM standard have some limitation that you have to store everything in RAM? There is a function on DcmElement (e.g. representing the Pixel Data element) called createValueFr...
by Bartek
Thu, 2016-07-28, 19:17
Forum: DCMTK - General
Topic: Live stream of raw data to dicom file
Replies: 12
Views: 14376

Re: Live stream raw data to dicom file

Also, DICOM Pixel Data in uncompressed format can not exceed 4 GB. This is since the length field of each DICOM data element is 4 bytes (for the Pixel Data element) so the maximum value for the length field is 32^2-1 bytes. So there is no way of storing 30 GB in native (i.e. uncompressed) pixel for...
by Bartek
Wed, 2016-07-27, 17:24
Forum: DCMTK - General
Topic: Live stream of raw data to dicom file
Replies: 12
Views: 14376

Live stream of raw data to dicom file

Hi everyone, I already read some topics on this forum but I don't have explicit answer for my problem. The goal what I would like to achieve is saving data(images) in real time from "instrument/camera it doesn't matter" to DICOM file. Data are represented as byte array(RAW data). Number of...