Search found 63 matches

by kamil
Thu, 2012-02-02, 09:29
Forum: DCMTK - Installation
Topic: v3.6.0 error C1083: Cannot open include file: 'iostream.h'
Replies: 5
Views: 9910

After I defined these macros: #define USE_STD_CXX_INCLUDES #define HAVE_SSTREAM #define USING_STD_NAMESPACE #define HAVE_CLASS_TEMPLATE #define HAVE_FUNCTION_TEMPLATE It appears some new errors: 1>h:\projects\dicomtest\converttoraw\dcmtk\oflog\helpers\property.h(57): warning C4800: 'OFBool' : forcin...
by kamil
Thu, 2012-02-02, 09:09
Forum: DCMTK - Installation
Topic: v3.6.0 error C1083: Cannot open include file: 'iostream.h'
Replies: 5
Views: 9910

v3.6.0 error C1083: Cannot open include file: 'iostream.h'

I find this error in "ofsteam.h", and I don't know how to solve this error, previous dcmtk version works well. After I contrast "ofsteam.h" in previous version, I found there is a new inform: /* DCMTK by default does not anymore pollute the default namespace by * importing namesp...
by kamil
Wed, 2012-02-01, 03:43
Forum: DCMRT
Topic: Where do I get the dcmrt module?
Replies: 2
Views: 16631

Where do I get the dcmrt module? I can't find it in the 3.6.0 .
by kamil
Fri, 2010-07-09, 04:15
Forum: DCMTK - General
Topic: The delay caused by gethostbyaddr()
Replies: 4
Views: 4635

Michael Onken wrote:Hi,

did you try option "-dhl --disable-host-lookup"?

Best regards,
Michael
Thank you! But I still don't know why and when it uses reverse DNS lookup?
by kamil
Wed, 2010-07-07, 08:09
Forum: DCMTK - General
Topic: The delay caused by gethostbyaddr()
Replies: 4
Views: 4635

The delay caused by gethostbyaddr()

Hi, when I test the dcmqrscp.exe I find a delay caused by reverse DNS lookup(gethostbyaddr()) if I don't build a DNS server.

Are there any other solution to solve it?(Beacause I don't familiar with win socket)

Thank you!
by kamil
Wed, 2010-02-24, 10:15
Forum: DCMTK - General
Topic: Do the dcmqrscp can be competent as a good database?
Replies: 11
Views: 12386

Hi Kamil, dcmqrdb only uses an index file to manage DICOM studies/series/images in the archive. Since the index file is just searche from start to end for an incoming request, I expect the performance being a littlebit worse than a database in the very beginning but extremely worse compared to a DB...
by kamil
Tue, 2010-02-09, 02:44
Forum: DCMTK - General
Topic: Do the dcmqrscp can be competent as a good database?
Replies: 11
Views: 12386

Do the dcmqrscp can be competent as a good database?

Or can be enhance it to a good database?
And I want to know the efficency of using findscu to query message from dcmqrscp.

Thank you very much!
by kamil
Wed, 2009-11-25, 04:22
Forum: DCMTK - General
Topic: About file name
Replies: 3
Views: 4511

As far as I can say, there are some restrictions for DICOMDIR but none for other applications. For the network services, dicom transmission does not use ftp but only datasets, so you can use abitrary name spaces. Of course, I am a beginner here and if there are some other tips I will be appreciated...
by kamil
Tue, 2009-11-24, 04:28
Forum: DCMTK - General
Topic: About file name
Replies: 3
Views: 4511

About file name

Is there any restriction about dcm file name?
Or it depends on Modality Manufacture's rule?

Thank you!
by kamil
Thu, 2009-06-25, 03:06
Forum: DCMTK - General
Topic: error: LNK:2019 DJDecoderRegistration::registerCodecs
Replies: 3
Views: 5574

I have solve this problem, I set the project - c\c++ - advance - __cdecl.
by kamil
Thu, 2009-06-25, 02:31
Forum: DCMTK - General
Topic: error: LNK:2019 DJDecoderRegistration::registerCodecs
Replies: 3
Views: 5574

Shaeto wrote:you didn't paste error message from the linker output.
I have added the error message, please check it, thank you!
by kamil
Wed, 2009-06-24, 11:19
Forum: DCMTK - General
Topic: error: LNK:2019 DJDecoderRegistration::registerCodecs
Replies: 3
Views: 5574

error: LNK:2019 DJDecoderRegistration::registerCodecs

I have conformed the FAQ #26 & #27 about how to link lib and my code work well before using DJDecoderRegistration::registerCodecs to decode jpeg compression. I'm woking C++ project in VS2005.net to create DLL and the linking order is as follow: dcmjpeg, ijg8, ijg12, ijg16, dcmimage, dcmimgle, dc...
by kamil
Tue, 2009-06-23, 03:24
Forum: DCMTK - General
Topic: A question about get Multi-Frame DIB data
Replies: 4
Views: 5099

Yes, this should result in a visable output. Btw, what is the output of this sample image with dcm2pnm - is it ok? I have solve this problem, the pixel value is '0' really, I made a mistake, this is a Monochorme2 image, and the form pixel are all black, so.. .When I get the latter value of pixel, i...
by kamil
Sat, 2009-06-20, 16:12
Forum: DCMTK - General
Topic: How to get data from dcm which PR = 1?
Replies: 9
Views: 12084

There is no such general rule. The size of the output image depends on the image data and the parameters which are passed to the method(s). Because I want to display the image which PR = 1, because of the getOutPutData() return the 2's complement integer's size, so how do I set the 'size' parameter...
by kamil
Sat, 2009-06-20, 15:36
Forum: DCMTK - General
Topic: A question about get Multi-Frame DIB data
Replies: 4
Views: 5099

Jörg Riesmeier wrote:If the image is monochrome, did you specify a reasonable VOI window before calling createWindowDIB()?
I just use the setMinMaxWindow() to set it, is it right?