Search found 10 matches

by gayathri.emd
Tue, 2023-12-19, 06:04
Forum: DCMTK - General
Topic: memory leak while encoding
Replies: 12
Views: 122132

Re: memory leak while encoding

Hi,
Okay Michael .Thanks for your Response.
by gayathri.emd
Mon, 2023-12-18, 10:46
Forum: DCMTK - General
Topic: memory leak while encoding
Replies: 12
Views: 122132

Re: memory leak while encoding

Hi, Tried "delete filePtr.getAndRemoveDataset();" / "filePtr.clear(). But still facing memory leak around 460MB in windows include "dcmtk/config/osconfig.h" #include "dcmtk/dcmdata/dcfilefo.h" #include "dcmtk\dcmjpeg\djdecode.h" #include "dcmtk\dcmjp...
by gayathri.emd
Thu, 2023-12-14, 07:13
Forum: DCMTK - General
Topic: memory leak while encoding
Replies: 12
Views: 122132

Re: memory leak while encoding

Hi,
I am getting memory leak around 320mb while using US(1.5 GB -attached )file in paused state.

Sample US File:
https://drive.google.com/drive/folders/ ... ctUycG1Wkj

1.Please run utility 2-3 times. Sometime i am not able to reproduce memory leak . Sometimes memory leak occured.
by gayathri.emd
Tue, 2023-12-12, 15:22
Forum: DCMTK - General
Topic: memory leak while encoding
Replies: 12
Views: 122132

Re: memory leak while encoding

Hi, i have tested below code with latest dcmtk(master branch).Still, i am facing memory leak issue. #include "dcmtk/config/osconfig.h" #include "dcmtk/dcmdata/dcfilefo.h" #include "dcmtk\dcmjpeg\djdecode.h" #include "dcmtk\dcmjpeg\djencode.h" int main(int argc...
by gayathri.emd
Sat, 2023-12-09, 06:25
Forum: DCMTK - General
Topic: memory leak while encoding
Replies: 12
Views: 122132

Re: memory leak while encoding

Hi,
can you use a newer version of DCMTK (3.6.7, at least, of preferably current source code from https://github.com/DCMTK/dcmtk/)?


i will check with latest dcmtk and update you.
by gayathri.emd
Thu, 2023-12-07, 11:07
Forum: DCMTK - General
Topic: memory leak while encoding
Replies: 12
Views: 122132

memory leak while encoding

Hi, In my windows application i am processing(loading ->compress->save) US Multiframe file(1021 frames, size-1.5gb, decompressed file) 100 times. below code is executed. Code Snippet: if (filePtr.loadFile(dicom_file_path).good()) { DcmDataset *dataset = filePtr.getDataset(); E_TransferSyntax t_xfer ...
by gayathri.emd
Thu, 2020-04-02, 10:15
Forum: DCMTK - General
Topic: DICOMSR - How to convert frame list to std::vector<int>?
Replies: 11
Views: 10027

Re: DICOMSR - How to convert frame list to std::vector<int>?

J. Riesmeier wrote: Wed, 2020-04-01, 12:20 DCMTK 3.6.0 is more than 9 years old. Please try again with a more recent version, e.g. 3.6.5 from October 2019.
okay will update and check . thanks for your response
by gayathri.emd
Wed, 2020-04-01, 05:52
Forum: DCMTK - General
Topic: DICOMSR - How to convert frame list to std::vector<int>?
Replies: 11
Views: 10027

Re: DICOMSR - How to convert frame list to std::vector<int>?

visual studio 2013 and Dcmtk -3.6.0
by gayathri.emd
Tue, 2020-03-31, 14:40
Forum: DCMTK - General
Topic: DICOMSR - How to convert frame list to std::vector<int>?
Replies: 11
Views: 10027

Re: DICOMSR - How to convert frame list to std::vector<int>?

Based on dcmtk library, I can get frame list by using the following statement : ((DSRImageTreeNode *)node)->getFrameList(). It returns to the DSRImageFrameList type. How to convert to std::vector<int> type ? :) Such a method is still on my to-do list, so in the meantime you have to implement it on ...
by gayathri.emd
Tue, 2020-03-31, 10:04
Forum: DCMTK - General
Topic: Get Frame List From Cad SR
Replies: 1
Views: 1798

Get Frame List From Cad SR

Hi, I want to get Referenced Frame number from SR Dicom to support multiframe cad. Dicom Tag is given below. (0008,1160) IS 29 # 1, 2 Referenced Frame Number my code is: ..... ..... DSRImageReferenceValue *refimage = static_cast< DSRImageReferenceValue *>(itree); DSRImageFrameList framelist = refima...