Search found 10 matches

by deepak.bme
Fri, 2014-07-11, 09:43
Forum: DCMTK - General
Topic: ASC_requestAssociation Wait for 1 sec
Replies: 3
Views: 4010

Re: ASC_requestAssociation Wait for 1 sec

this works for me. :) :D
Thank you very much for the reply.
by deepak.bme
Wed, 2014-07-09, 07:32
Forum: DCMTK - General
Topic: ASC_requestAssociation Wait for 1 sec
Replies: 3
Views: 4010

ASC_requestAssociation Wait for 1 sec

Hi All, I am using ASC_requestAssociation for opening an associations with SCP .My code Looks like this ASC_initializeNetwork(NET_REQUESTOR, 0, 0, &mDcmtkNetwork); DUL_BLOCKOPTIONS block = DUL_NOBLOCK; // Request the SCP to open an association ASC_requestAssociation( mDcmtkNetwork,params, &m...
by deepak.bme
Mon, 2013-12-16, 06:01
Forum: DCMTK - General
Topic: Problem in updating DICOMDIR with existing records
Replies: 3
Views: 4199

Re: Problem in updating DICOMDIR with existing records

yes..Both the files had same SOP Instance UID.It works fine ,if I change the SOP Instance UID.
Is it mandatory to change SOP Instace UID of a Image if we edit some demographic information of an Image ??
by deepak.bme
Fri, 2013-12-13, 09:00
Forum: DCMTK - General
Topic: Problem in updating DICOMDIR with existing records
Replies: 3
Views: 4199

Problem in updating DICOMDIR with existing records

Hi , I am trying to update a DICOMDIR with existing records in which referenced files patient information(eg. Patient Name) got changed .I am using DicomDirInterface 's updateDicomDir(app_Profile,dicomdirPath) API to do that.Is there any thing else I need to do to reflect Patient Information changes...
by deepak.bme
Mon, 2013-07-22, 10:55
Forum: DCMTK - General
Topic: writeXML for charset ISO 2022 IR 13 or ISO 2022 IR 149
Replies: 1
Views: 9714

writeXML for charset ISO 2022 IR 13 or ISO 2022 IR 149

Hi I am trying to write DCMDirectoryRecord Object into XML ,which has ISO 2022 IR 13 (i.e Japanese ) or ISO 2022 IR 149(i.e Korean ) Patient Name using WriteXML API. It add some junk values into it and am not able to parse that XML. I wanted to know Is these character set are supported in DCMTK writ...
by deepak.bme
Fri, 2013-05-17, 08:24
Forum: DCMTK - General
Topic: Delete/modify a reference Image in DicomDir
Replies: 2
Views: 3709

Delete/modify a reference Image in DicomDir

Hi , I just want to know is it any way by which :- 1) I can delete a image from exiting dicomDir file using DicomDirInterface ? 2) I can add a modified image to the dicomDir which is already present in DicomDir.In updateDicomDir is gives me a "Error SOP Instance UID referenced to different File...
by deepak.bme
Fri, 2013-04-26, 02:08
Forum: DCMTK - General
Topic: Not able to add iconImage to DicomDir
Replies: 3
Views: 10013

Re: Not able to add iconImage to DicomDir

Thanks for your reply

No ,that file does not exist . Can you please guide me
1) How i have to generate PGM file
2) Where I have to kept that file to add into the dicomdir.
by deepak.bme
Thu, 2013-04-25, 10:19
Forum: DCMTK - General
Topic: Not able to add iconImage to DicomDir
Replies: 3
Views: 10013

Not able to add iconImage to DicomDir

Hi All, I am not able to add icon Images to DicomDir file. I am using following code to add Icons mDcmDirObj->enableIconImageMode(OFTrue); mDcmDirObj->setIconPrefix("Icon"); mDcmDirObj->setIconSize(128); DicomDirImageImplementation imagePlugin; mDcmDirObj->addImageSupport(&imagePlugin)...
by deepak.bme
Fri, 2013-04-19, 07:13
Forum: DCMTK - General
Topic: Adding user specific Tags to DicomDir
Replies: 2
Views: 8085

Re: Adding user specific Tags to DicomDir

Either change the existing source code of the DicomDirInterface class or add the user-specific tags to the dataset after the DICOMDIR has been created. However, please make sure that the created DICOMDIR still conforms to the requirements of the DICOM standard. Thanks a lot J. Riesmeier for your va...
by deepak.bme
Tue, 2013-04-16, 03:15
Forum: DCMTK - General
Topic: Adding user specific Tags to DicomDir
Replies: 2
Views: 8085

Adding user specific Tags to DicomDir

Hi All, I am using DCMTK to create dicomdir and add images to it.All these things are working fine.I have a requirement to Add some user specific Tags to dicomdir under some specific parent record.Can you please suggest me ,How can I solve this problem.I am using DicomDirInterface to create new dico...