Search found 35 matches

by vishu2111
Thu, 2014-01-16, 07:48
Forum: DCMTK - General
Topic: How Can I get list of patient and study related DcmTag
Replies: 1
Views: 2286

How Can I get list of patient and study related DcmTag

hi,


I want to know all patient,study,Series,Image related DcmTag.how can I get it?
by vishu2111
Mon, 2014-01-13, 07:56
Forum: DCMTK - General
Topic: movescu error
Replies: 3
Views: 4273

Re: movescu error

hi,


I'm getting the same error.
by vishu2111
Fri, 2014-01-10, 09:17
Forum: DCMTK - General
Topic: movescu error
Replies: 3
Views: 4273

movescu error

hi, I'm trying to download file from www.dicomserver.co.uk but I'm getting following error. (0000,0902) LO [A connection attempt failed because the connected party did n ot properly respond after a period of time, or established connection failed bec ause connected host has failed to respond 210.212...
by vishu2111
Tue, 2014-01-07, 08:58
Forum: DCMTK - General
Topic: Writing Relational Queries
Replies: 2
Views: 3952

Re: Writing Relational Queries

done with the relational Queries. code below : DcmDataset mainReq; DcmSCU *objScu=new DcmSCU(); ... set Required parameter such as host,port etc ... set/add Transfer syntax and presentation context OFCondition result = objScu->initNetwork(); if (result.bad()) { DCMNET_ERROR("Unable to set up th...
by vishu2111
Mon, 2014-01-06, 16:15
Forum: DCMTK - General
Topic: Writing Relational Queries
Replies: 2
Views: 3952

Writing Relational Queries

hi, I need to retrieve all the images from PACS related to perticular patient. I'm building parameters and passing to sendFindRequest() method but every time I'm getting one record located on server side. code is below : DcmDataset req; req.putAndInsertOFStringArray(DCM_QueryRetrieveLevel, "SER...
by vishu2111
Mon, 2014-01-06, 11:51
Forum: DCMTK - General
Topic: port issue in dcmtk.
Replies: 1
Views: 2612

port issue in dcmtk.

hi, I am using dcmtk 3.6.1 version.I am writing a code to get dicom files from PACS server asynchronously. I am listening on some XXXX port number (note : XXXX > 1024). I'm calling method asynchronously then I'm getting only one file and for rest of files I'm getting "ClientXXX Does not accept ...
by vishu2111
Fri, 2014-01-03, 11:51
Forum: DCMTK - General
Topic: How to get DIMSE_Status
Replies: 0
Views: 16189

How to get DIMSE_Status

hi,

I'm calling sendFindRequest() method but I want DIMSE_status from callback method.

what should I do?
by vishu2111
Thu, 2014-01-02, 16:38
Forum: DCMTK - General
Topic: call back not Norking for perform Query Method
Replies: 1
Views: 2970

call back not Norking for perform Query Method

hi, Call back is not working in do method code : class DcmtkFindScuCallback:public DcmFindSCUCallback { public: DcmtkFindScuCallback() { } virtual void callback(T_DIMSE_C_FindRQ *request,int responseCount,T_DIMSE_C_FindRSP *rsp, DcmDataset *responseIdentifiers) { std::cout<<"CallBack"<<res...
by vishu2111
Wed, 2013-12-11, 11:33
Forum: DCMTK - General
Topic: creating multiframe dicom Image
Replies: 1
Views: 2844

creating multiframe dicom Image

hi,

how to create multiframe dicom image from jpeg image.
by vishu2111
Wed, 2013-12-11, 11:32
Forum: DCMTK - General
Topic: how to set TransferSyntax for dataset.
Replies: 2
Views: 3450

Re: how to set TransferSyntax for dataset.

thanks ....
by vishu2111
Tue, 2013-12-10, 15:51
Forum: DCMTK - General
Topic: writing log into file
Replies: 2
Views: 3268

Re: writing log into file

Thank You... :)
by vishu2111
Tue, 2013-12-10, 13:19
Forum: DCMTK - General
Topic: writing log into file
Replies: 2
Views: 3268

writing log into file

hi,

I want to write log into file using using code not by specifying command line option.
is there is any method that gives us way to write?
by vishu2111
Mon, 2013-12-09, 14:33
Forum: DCMTK - General
Topic: how to set TransferSyntax for dataset.
Replies: 2
Views: 3450

how to set TransferSyntax for dataset.

hi,

I want to set TransferSyntax to dataset.which method should I use?
by vishu2111
Mon, 2013-12-09, 06:56
Forum: DCMTK - General
Topic: how should I retrive images from conquestDicom server
Replies: 5
Views: 5439

Re: how should I retrive images from conquestDicom server

I have done changes in the code accordingly.but I dont need storescp to be executed contineously on my machine. I want to embed that code in my function.

so can you suggest idea to go forward..


Thank You...
by vishu2111
Fri, 2013-12-06, 14:59
Forum: DCMTK - General
Topic: How to set parameter for association
Replies: 2
Views: 3311

How to set parameter for association

hi,

how can I set T_ASC_Paramater?
I have moveSCU(T_ASC_Association * assoc ) function. I have to send patientID,its value and other required parameter to get an image from pacs server.

how can I set required parameter?