Search found 3 matches

by jakecobb
Thu, 2021-06-03, 18:24
Forum: DCMTK - General
Topic: Handling PixelData after change in 3.6.5
Replies: 1
Views: 2101

Handling PixelData after change in 3.6.5

We have some long-existing code that uses DcmItem::findAndGetUint8Array for DCM_PixelData. Prior to DCMTK 3.6.5 this function and the similar ones for e.g. uint16 array always returned the length of the array. 3.6.5 introduced this change: https://support.dcmtk.org/redmine/issues/867 Some relevant c...
by jakecobb
Wed, 2016-09-28, 21:15
Forum: DCMTK - Installation
Topic: DCMTK 3.6.1 CMake config shadows system headers
Replies: 4
Views: 6011

Re: DCMTK 3.6.1 CMake config shadows system headers

Sorry for the slow reply. I applied the patch and it does fix the problem, thanks!

-Jake
by jakecobb
Thu, 2016-09-08, 19:33
Forum: DCMTK - Installation
Topic: DCMTK 3.6.1 CMake config shadows system headers
Replies: 4
Views: 6011

DCMTK 3.6.1 CMake config shadows system headers

The DCMTKConfig.cmake places all of the module subdirectories directly into DCMTK_INCLUDE_DIRS. The standard CMake way to configure for this dependency would be along the lines of: find_package(DCMTK REQUIRED CONFIG) include_directories(${DCMTK_INCLUDE_DIRS}) This means the DCMTK headers which are n...