Search found 15 matches

by eshwar.ramesh
Fri, 2013-01-18, 15:43
Forum: DCMTK - General
Topic: osconfig.h setting
Replies: 1
Views: 2432

osconfig.h setting

Might be a stupid question,, but I'll ask it anyway as this might be the answer to our iOS app passing store validation. Is there anyway to avoid osconfig.h setting the HAVE_ISNAN and HAVE_ISINF flags to 1 on the Mac(and iOS) platforms? Or is there any change we can make on the ofstd.cc file which i...
by eshwar.ramesh
Fri, 2013-01-18, 08:11
Forum: DCMTK - General
Topic: DCMTK and appstore
Replies: 7
Views: 10292

Re: DCMTK and appstore

Also I need to know about any side effects of removing the presence of isinf from ofstd.cc. Anything?
by eshwar.ramesh
Fri, 2013-01-18, 07:42
Forum: DCMTK - General
Topic: DCMTK and appstore
Replies: 7
Views: 10292

Re: DCMTK and appstore

Since you asked this question, may I know how you worked around it because I have a similar issue with the iOS store. I have tried excluding isinf with undef I guess it goes something like this --> #undef HAVE_ISINF or within comments like this --> /* #undef HAVE_ISINF */ and also like this --> #def...
by eshwar.ramesh
Thu, 2012-11-22, 12:48
Forum: DCMTK - General
Topic: Reason for no Dicom-Meta-Information-Header
Replies: 1
Views: 2535

Reason for no Dicom-Meta-Information-Header

I have received a DICOM file after Store SCP and this is the dcmdump of the file. The image opens just white. Can you guide me as to what could be wrong? The reason for no Dicom-Meta-Information-Header? # Dicom-File-Format # Dicom-Meta-Information-Header # Used TransferSyntax: Unknown Transfer Synta...
by eshwar.ramesh
Tue, 2012-11-20, 04:58
Forum: DCMTK - General
Topic: sendFINDRequest - invalid argument (findResponses)
Replies: 3
Views: 8544

Re: sendFINDRequest - invalid argument (findResponses)

I am working/trying to work on an iOS + dcmtk compilation, I managed to compile dcmtk 3.6.0. And everything was fine until I needed to use findscu and getscu. I don't want to use storescp to retrieve images. So, when I tried the latest few snapshots, the generated Xcode project doesn't open saying, ...
by eshwar.ramesh
Mon, 2012-11-19, 16:26
Forum: DCMTK - General
Topic: sendFINDRequest - invalid argument (findResponses)
Replies: 3
Views: 8544

sendFINDRequest - invalid argument (findResponses)

I used this commit http://git.dcmtk.org/web?p=dcmtk.git;a=commit;h=d69cc2fbabdbcd6c3f9db5c748ad9437f8d02ca6 . And this code gives me the error /* Assemble and send C-FIND request */ OFList<QRResponse*> findResponses; DcmDataset req; req.putAndInsertOFStringArray(DCM_QueryRetrieveLevel, "STUDY&q...
by eshwar.ramesh
Fri, 2012-11-09, 13:42
Forum: DCMTK - General
Topic: Implementation of C-Find
Replies: 1
Views: 2426

Implementation of C-Find

I am using dcmtk 3.6.0 for iOS. I got some code to implement C-Find but the <QRResponse*> is unavailable in this version of dcmtk. How do I implement it in the 3.6.0 version? The code used is this one: http://support.dcmtk.org/wiki/dcmtk/howto/dcmscu-example Or could you let me know how to resolve o...
by eshwar.ramesh
Thu, 2012-08-09, 13:33
Forum: DCMTK - General
Topic: Obj-C LLVM compiler starts complaining after build (for iOS)
Replies: 10
Views: 11211

Re: Obj-C LLVM compiler starts complaining after build (for

Hello, After making ViewController.m, ViewController.mm and passing the compiler errors, I am receiving this error. Technically the thread execution of the program "pauses" with an EXC_BAD_ACCESS, and I have no clue what's happening. "log4cplus::_clear_tostringstream(std::basic_ostrin...
by eshwar.ramesh
Thu, 2012-08-09, 09:13
Forum: DCMTK - General
Topic: Obj-C LLVM compiler starts complaining after build (for iOS)
Replies: 10
Views: 11211

Re: Obj-C LLVM compiler starts complaining after build (for

Hello, as suggested in a lot of places, I tried naming that source file ViewController.m -> ViewController.mm and got past the compiler complaints. Now when building and running, the thread stops at DcmDataDictionary saying "EXC_BAD_ACCESS". Anything I should know about the DcmDataDictiona...
by eshwar.ramesh
Thu, 2012-08-09, 09:03
Forum: DCMTK - Installation
Topic: DCMTK for iOS
Replies: 27
Views: 54516

Re: DCMTK for iOS

Hello @russes,

I am interested in knowing the instructions you followed to build dcmtk 3.6.1 for Xcode 4.3 apart from that chinese build stuff. Are you willing to post it here?
by eshwar.ramesh
Wed, 2012-08-08, 16:55
Forum: DCMTK - General
Topic: Obj-C LLVM compiler starts complaining after build (for iOS)
Replies: 10
Views: 11211

Re: Obj-C LLVM compiler starts complaining after build (for

ViewController.m #import "ViewController.h" /* Check my headers for this file */ #include <dcmtk/config/osconfig.h> #include <dcmtk/dcmdata/dcfilefo.h> #include <dcmtk/dcmdata/dcdeftag.h> @interface ViewController () @end @implementation ViewController - (void)viewDidLoad { [super viewDidL...
by eshwar.ramesh
Wed, 2012-08-08, 15:49
Forum: DCMTK - General
Topic: Obj-C LLVM compiler starts complaining after build (for iOS)
Replies: 10
Views: 11211

Re: Obj-C LLVM compiler starts complaining after build (for

Any ideas how I can disable ANSI_STDLIB? I tried adding a manual condition DCMTK_WITH_ANSI_STDLIB (BOOL) set to OFF and well CMake won't accept manual conditions.
by eshwar.ramesh
Wed, 2012-08-08, 13:52
Forum: DCMTK - General
Topic: Obj-C LLVM compiler starts complaining after build (for iOS)
Replies: 10
Views: 11211

Re: Obj-C LLVM compiler starts complaining after build (for

Update : In the osconfig.h file, "#define USE_STD_CXX_INCLUDES" was defined. I tried commenting that out. And it gives me an error from ofstream.h, saying that "iostream.h" is not found. So, should I recompile the whole dcmtk again? Or is there any other solution?
by eshwar.ramesh
Wed, 2012-08-08, 13:24
Forum: DCMTK - General
Topic: Obj-C LLVM compiler starts complaining after build (for iOS)
Replies: 10
Views: 11211

Re: Obj-C LLVM compiler starts complaining after build (for

do you including "dcmtk/config/osconfig.h" before any other DCMTK header? This is worth trying. Yes I put it before any other DCMTK header. Also, it seems from your post that USE_STD_CXX_INCLUDES is defined. Did you also define it when compiling DCMTK? Per default, it should be set to OFF...
by eshwar.ramesh
Wed, 2012-08-08, 10:41
Forum: DCMTK - General
Topic: Obj-C LLVM compiler starts complaining after build (for iOS)
Replies: 10
Views: 11211

Obj-C LLVM compiler starts complaining after build (for iOS)

So, 1. I seem to have compiled DCMTK 3.6.0 correctly. 2. Created a new Xcode (4.3.2) project 3. Given the correct file paths for headers and libraries 4. Linked libraries to the binary. All is well I thought. Now, I get complaints from the Apple LLVM Compiler about a certain "<cstddef> file not...