Search found 13 matches

by Edwarddu
Mon, 2016-03-07, 09:14
Forum: DCMTK - General
Topic: FSM Error - No action defined state 6 event 8
Replies: 3
Views: 6769

Re: FSM Error - No action defined state 6 event 8

You are correct , and i got the same problem. Thank you for your post, it solved my problem.
by Edwarddu
Fri, 2015-07-31, 07:03
Forum: DCMTK - General
Topic: Sample of DICOM-ECG
Replies: 3
Views: 10618

Re: Sample of DICOM-ECG

legionmaster wrote:hi, Do you know some software to view this file? I tried to use EcgViewer and it is showing mistakes.
I don't want to read the dicom details (i can do that), but to draw wave written in it.
This is what you want :
http://www.charruasoft.com/products/ecgv/index.php
by Edwarddu
Wed, 2014-08-13, 01:54
Forum: DCMTK - General
Topic: DCMTK saveFile API crashing for Windows 8, x64 VS-2013
Replies: 4
Views: 6100

Re: DCMTK saveFile API crashing for Windows 8, x64 VS-2013

I also have this problem on my Windows 8 machine when I use dcmGenerateUniqueIdentifier to generate UID. So I remove the following lines and don't use getMACAdress() method any more on Windows 8. // on Windows 8 , it crash //unsigned char buffer[6]; //crc.addBlock(getMACAddress(buffer), sizeof(buffe...
by Edwarddu
Fri, 2014-06-27, 04:03
Forum: DCMTK - General
Topic: Extracting messages from ofConsole
Replies: 5
Views: 6986

Re: Extracting messages from ofConsole

Actullay, you can use the following code to deal with DIMSE_printCEchoRQ method:

Code: Select all

	OFString str;
DIMSE_dumpMessage(str,*response, DIMSE_OUTGOING,NULL,NULL);
logstream << str;
by Edwarddu
Wed, 2014-06-25, 10:04
Forum: DCMTK - General
Topic: DCMTK Log: Redirect logs for different calling AE
Replies: 2
Views: 3809

Re: DCMTK Log: Redirect logs for different calling AE

After ASC_receiveAssociation, I add the following code: const char *callingAEIP = m_assoc->params->DULparams.callingAPTitle; std::string path = DirectoryUtil::GetApplicationDiretory(); std::string LogFilePath = path + "\\DicomServer_log\\"; std::string logFileName = LogFilePath + callingAE...
by Edwarddu
Wed, 2014-06-25, 04:00
Forum: DCMTK - General
Topic: DcmSCP: how to write handlFindRequest function?
Replies: 2
Views: 3806

Re: DcmSCP: how to write handlFindRequest function?

1. There is no difference in your handleFindRequest code to deal with the cfind request with or without dcm filename. Actually, you can use -k to specified all the query parameters and don't use the patqry.dcm. 2. I am sure you are not clear about -P and -W. -P meanings using Patient Root informatio...
by Edwarddu
Wed, 2014-06-25, 03:44
Forum: DCMTK - General
Topic: Retriving Images From Pacs Server
Replies: 1
Views: 2576

Re: Retriving Images From Pacs Server

Which step do you get error ?
Please paste your log here, or nobody knows how to answer your question.
by Edwarddu
Wed, 2014-06-25, 03:35
Forum: DCMTK - Installation
Topic: Is there any body Using DCMTK360 and STLPort ?
Replies: 3
Views: 9982

Re: Is there any body Using DCMTK360 and STLPort ?

After all, we remove the STLport dependency, and now we work with DCMTK360 perfectly.

Thank you.
by Edwarddu
Wed, 2014-06-25, 03:32
Forum: DCMTK - General
Topic: SCU Store Image to SCP Sometimes error
Replies: 1
Views: 2845

Re: SCU Store Image to SCP Sometimes error

It seems it's a TCP error. Is there any firewall block the connection or some other network problem ? Can you telnet the port ?
by Edwarddu
Wed, 2014-06-25, 03:28
Forum: DCMTK - General
Topic: DCMTK Log: Redirect logs for different calling AE
Replies: 2
Views: 3809

DCMTK Log: Redirect logs for different calling AE

Hi All, I have implemented a DICOM Store SCP using DCMTK. Now I write all the dcmtk logs into one file: server.log. Since my DICOM Store SCP will accept associations from different store SCUs. I want to create different log files for different store scu. For example, store scu AE1 connnect to store ...
by Edwarddu
Tue, 2013-12-31, 07:05
Forum: DCMTK - Installation
Topic: Is there any body Using DCMTK360 and STLPort ?
Replies: 3
Views: 9982

Is there any body Using DCMTK360 and STLPort ?

Hi All,
We use DCMTK3.5.4 , STLPort on VC6 before. It works.
Now we want to upgrade to DCMTK360, and got several compiles errors because we also use the STLPort. Is there any one have done it before ? Any specified configuration that I have to do ?

Thanks in advance.
by Edwarddu
Thu, 2013-12-05, 10:40
Forum: DCMTK - General
Topic: how should I retrive images from conquestDicom server
Replies: 5
Views: 5444

Re: how should I retrive images from conquestDicom server

Hi,

According to conquest server's dicom conformance statement, it doesn't support c-get scp.
So you have to use c-move to move the image from conquest server to another DICOM C-Store SCP.
by Edwarddu
Thu, 2013-12-05, 10:34
Forum: DCMTK - General
Topic: iOS - how to retrieve images using C-Move & C-Store ?
Replies: 2
Views: 5428

Re: iOS - how to retrieve images using C-Move & C-Store ?

Briefly, you have to implement a C-Store SCP on ipad which can listen on a port and handle the c-store request. And also you need implement a C-Move SCU to ask PACS send images to your iPad.