Search found 46 matches

by MuhammadHemdan
Thu, 2012-04-12, 09:45
Forum: DCMTK - General
Topic: sendDIMSEMessage crash
Replies: 3
Views: 4238

When is "sometimes"? What exactly are you doing when this crashes? Could you perhaps provide the logging output (preferably with TRACE enabled)? Or do you have any backtrace for this crash? isctype.c isn't part of the DCMTK and thus that message doesn't tell me anything (except that I can...
by MuhammadHemdan
Wed, 2012-04-11, 09:19
Forum: DCMTK - General
Topic: sendDIMSEMessage crash
Replies: 3
Views: 4238

sendDIMSEMessage crash

Hi all, I'm using sendSTORERequest function to send dicom file which call sendDIMSEMessage function. sendDIMSEMessage function uses "msg" structure which has CStore structure which has MoveOriginatorApplicationEntityTitle array. Sometimes the first element in this array is "negative v...
by MuhammadHemdan
Wed, 2012-04-04, 12:28
Forum: DCMTK - General
Topic: Convert MPEG to DICOM
Replies: 4
Views: 6795

Hi, we do not have a tool for that. However, it is not that difficult once you have the video correctly encoded as MPEG 2 or MPEG 4. Look at part 5 of the DICOM standard how to integrate the video streams in DICOM. Also checkout the MPEG2 and MPEG4 supplements on this page which were used to introd...
by MuhammadHemdan
Tue, 2012-04-03, 14:25
Forum: DCMTK - General
Topic: Convert MPEG to DICOM
Replies: 4
Views: 6795

Convert MPEG to DICOM

How can I convert MPEG or AVI to DICOM multiframe?
by MuhammadHemdan
Mon, 2012-04-02, 10:25
Forum: DCMTK - General
Topic: problem with loading multiframe
Replies: 12
Views: 14355

Re: problem with loading multiframe

I'm trying to create a compressed dicom multiframe file from avi file. Everything works fine on very small files, but i have problem with larger files because the uncompressed data is more than 1gb and i start to have alloc problems. I really want to use DcmPixelData::createValueFromTempFile() but ...
by MuhammadHemdan
Mon, 2012-04-02, 10:11
Forum: DCMTK - General
Topic: Ultrasound Multiframe
Replies: 4
Views: 6463

You need to select an appropriate transfer syntax for the encoding in DICOM format, e.g. JPEG Baseline, JPEG Lossles, RLE, MPEG-2 or MPEG-4. See DICOM part 5 for details. Of course, you should also check which transfer syntaxes your "communication partners" support. AVI is a container for...
by MuhammadHemdan
Sun, 2012-04-01, 08:45
Forum: DCMTK - General
Topic: Ultrasound Multiframe
Replies: 4
Views: 6463

J. Riesmeier wrote:The interpretation of the multiple frames depends on the IOD. For the US Multi-frame Image IOD, it is a cine run.
our software generates AVI video for cine, how can i convert it to dicom? Or i need to convert each frame?
by MuhammadHemdan
Tue, 2012-03-27, 15:51
Forum: DCMTK - General
Topic: Ultrasound Multiframe
Replies: 4
Views: 6463

Ultrasound Multiframe

I'm developing DICOM in our ultrasound software to send ultrasoud images to remote server. I conver jpeg to DICOM image and send it with no problem.
But I need to Know what is the meaning of multiframe? is it CINE video or groups of frames I can convert them to dicom and send it or what?
by MuhammadHemdan
Thu, 2012-03-22, 10:18
Forum: DCMTK - General
Topic: sending DICOM to server
Replies: 3
Views: 3891

vived wrote:Dicom file is incorrect
No. The problem is as J. Riesmeier said.
by MuhammadHemdan
Wed, 2012-03-21, 13:31
Forum: DCMTK - General
Topic: sending DICOM to server
Replies: 3
Views: 3891

sending DICOM to server

I'm using "storescu" to send DICOM image to "87.106.65.167" "104" server. But the following message appears:

W: (0000,0902) LO [String Value '27' is not compatible with the rules for VR=AS :Elements must be ###X where X is D, W, M or Y] # 108, 1 ErrorComment
by MuhammadHemdan
Mon, 2012-03-19, 16:09
Forum: DCMTK - General
Topic: send multiple dicom files
Replies: 9
Views: 8973

You mean in the DCMTK release 3.6.0? Of course, there is a solution. In fact, there are multiple ways of doing it. If you prefer to use the DcmSCU class, you could e.g. call sendSTORERequest() multiple times. Also the command line tool storescu is able to send multiple DICOM objects on a single ass...
by MuhammadHemdan
Mon, 2012-03-19, 15:53
Forum: DCMTK - General
Topic: send multiple dicom files
Replies: 9
Views: 8973

MuhammadHemdan wrote:
MuhammadHemdan wrote:
J. Riesmeier wrote:No, that's why I pointed to the snapshot version.
from where i can get the last version? i can't find it the OFFIS web site?
I found it.

But there is no solution of sending multiple file in the previous snapshot?
by MuhammadHemdan
Mon, 2012-03-19, 15:52
Forum: DCMTK - General
Topic: send multiple dicom files
Replies: 9
Views: 8973

MuhammadHemdan wrote:
J. Riesmeier wrote:No, that's why I pointed to the snapshot version.
from where i can get the last version? i can't find it the OFFIS web site?
I found it.
by MuhammadHemdan
Mon, 2012-03-19, 15:48
Forum: DCMTK - General
Topic: send multiple dicom files
Replies: 9
Views: 8973

J. Riesmeier wrote:No, that's why I pointed to the snapshot version.
from where i can get the last version? i can't find it the OFFIS web site?
by MuhammadHemdan
Mon, 2012-03-19, 15:42
Forum: DCMTK - General
Topic: send multiple dicom files
Replies: 9
Views: 8973

J. Riesmeier wrote:For sending multiple DICOM files/datasets see DcmStorageSCU, a class that is available as part of the latest DCMTK snapshot.

A multiframe DICOM image is usually stored as a single SOP instance, so you can send it with a single C-STORE request.
is this class found in DCMTK 3.6.0?