Search found 28 matches

by manoindia2020
Thu, 2011-08-18, 11:52
Forum: DCMTK - General
Topic: Getting error in movescu
Replies: 8
Views: 8908

Bonjour will solve the Private network?

Hi, I read some posts regarding solving the private network problem. Few suggested that using Bonjour Service in App will solve the private network problem. I did some samples on Bonjour just for testing and it works. But I don't have any idea about integrating with the dcmtk. Is there any working s...
by manoindia2020
Tue, 2011-08-16, 22:18
Forum: DCMTK - General
Topic: Getting error in movescu
Replies: 8
Views: 8908

Yes I understood the www.dicomserver.co.uk document

According to the things that specified in their url I have changed my port address to 11112. Still the error occurs. I found something wrong but no idea how to correct it. The http://dicomserver.co.uk tries to send the image to the ip with port 122.164.174.137:11112 but my system IP is 192.168.10.6 ...
by manoindia2020
Tue, 2011-08-16, 20:28
Forum: DCMTK - General
Topic: Getting error in movescu
Replies: 8
Views: 8908

still the same error

Code: Select all

movescu -d --patient --port 11113 --move MOVESCU --call MOVESCP www.dicomserver.co.uk 11112 -k 0010,0020=987
No other application listening that port.
by manoindia2020
Tue, 2011-08-16, 16:38
Forum: DCMTK - General
Topic: Getting error in movescu
Replies: 8
Views: 8908

Getting error in movescu

I am calling the movescu as movescu -d --patient 11112 --move MOVESCU --call MOVESCP www.dicomserver.co.uk 11112 -k 0010,0020=987 but I am getting the following error message. May I know what I m missing. W: Status Detail: W: W: # Dicom-Data-Set W: # Used TransferSyntax: Little Endian Implicit W: (0...
by manoindia2020
Sat, 2011-08-13, 17:30
Forum: DCMTK - General
Topic: Getting Patients name, file name as well as basic information about the dcm files from PACS server
Replies: 1
Views: 2854

Getting Patients name, file name as well as basic information about the dcm files from PACS server

Hi, I am a beginner for the dicom and dcmtk. I am developing an iPhone application that retrieves the images from PACS server. The steps that involved in my application is 1. Retrieving the list of Patients name,Scan Type,Scan Area as a list. 2. On user clicking the particular record in the list, it...
by manoindia2020
Fri, 2011-08-12, 19:11
Forum: DCMTK - General
Topic: Receiving Images from PACS using DCMSCU
Replies: 6
Views: 24568

Hi reno

Can you post the code here, which worked for you in downloading the images from PACS server.
by manoindia2020
Fri, 2011-08-12, 16:42
Forum: DCMTK - General
Topic: connect to PACS system biginner question
Replies: 30
Views: 46144

Getting Will not wait for further C-MOVE responses

Hi, I am developing the Dicom app for iPhone. I tried DCMTestSCU with storescp but I am getting I: Send C-MOVE Request W: Status is 0xc001 (unknown) W: Will not wait for further C-MOVE responses The code snippet is this: storescp -d 11112 result = scu.sendMOVERequest(presID, "MOVESCP", &am...
by manoindia2020
Tue, 2011-07-26, 23:19
Forum: DCMTK - General
Topic: DCMTK PACS server connection
Replies: 3
Views: 22628

Move Destination Unknown

Hi, I tried with DCMTestSCU along with STORESCP Connection being established and I am sending the sendMoveRequest. Before sending the sendMoveRequest I am initializing the "storescp -d 10000". But I am getting the Move Destination Unknown error. Can you please help me out. What I am missin...
by manoindia2020
Sun, 2011-07-24, 04:48
Forum: DCMTK - General
Topic: PACS server communication
Replies: 13
Views: 17811

sendMoveRespose method is not found in DCMSCU

I am having the latest dcmtk3.6 lib, in that I can't find the method sendMoveResponse in DCMSCU. Can you tell me what I am missing actually.
Thanx in advance

with regards
Manoj Kumar D
by manoindia2020
Sun, 2011-07-24, 04:17
Forum: DCMTK - General
Topic: connect to PACS system biginner question
Replies: 30
Views: 46144

Can't find the method scu.sendMOVERequest

Hi,

while I m trying to call the method "sendMOVERequest" it says no such method found. Can you please help me out, what I am missing. I am having my latest dcmtk 3.6.0 version.

Thanks in advance

with regards
Manoj Kumar D
by manoindia2020
Fri, 2011-07-22, 13:38
Forum: DCMTK - General
Topic: DCMTK PACS server connection
Replies: 3
Views: 22628

DCMTK PACS server connection

Hi, I am developing an iPhone application using dcmtk lib to view DCM image as well as the application can able to connect to the PACS Server . The first part of my application is over.(DCM Image viewer). The second part PACS Server. I have installed PACS Server in my local system. I tried the DCMTe...
by manoindia2020
Tue, 2011-06-28, 14:57
Forum: DCMTK - General
Topic: getting wrong pixel data using Dicom->getOutputData(8,0,0)
Replies: 3
Views: 4271

Thanks a lot "setMinMaxWindow(0)" works.

But still some clarity is missing in image.
by manoindia2020
Tue, 2011-06-28, 14:03
Forum: DCMTK - General
Topic: getting wrong pixel data using Dicom->getOutputData(8,0,0)
Replies: 3
Views: 4271

getting wrong pixel data using Dicom->getOutputData(8,0,0)

Hi, I have built dcmtk library and set all the environments correctly for iPhone Simulator. I am facing some problem while reading the data using the method getOutputData(8,0,0) . Here is my code: DicomImage *di = new DicomImage("brain_001.dcm"); [[NSData alloc] initWithBytes:di->getOutput...