Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ITKGDCM] debug ITK GDCM reader for DICOM #1138

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/layers/legacy/medCoreLegacy/data/medMetaDataKeys.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ namespace medMetaDataKeys
MEDCORELEGACY_EXPORT const Key RepetitionTime("RepetitionTime", "Repetition Time");

// CT Image
MEDCORELEGACY_EXPORT const Key KVP("KVP", "kVp", QVariant::UInt);
MEDCORELEGACY_EXPORT const Key KVP("KVP", "kVp", QVariant::UInt); //Kilovolt peak for CT image

// EXPORT EXTRA DATA TO ATTACHED FILE
MEDCORELEGACY_EXPORT const Key Toolbox("Toolbox", "Toolbox used to process image");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -878,7 +878,7 @@ QString medAbstractDatabaseImporter::determineFutureImageExtensionByDataType ( c
{
dataWriter = medAbstractDataFactory::instance()->writerSmartPointer ( writers[i] );

if (dataWriter->handled().contains(medData->identifier()) )
if (dataWriter->handled().contains(identifier))
{
QStringList extensions = dataWriter->supportedFileExtensions();
if(!extensions.isEmpty())
Expand Down
2 changes: 0 additions & 2 deletions src/layers/legacy/medImageIO/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ include(${ITK_USE_FILE})

find_package(DCMTK REQUIRED NO_MODULE)


## #############################################################################
## List Sources
## #############################################################################
Expand Down Expand Up @@ -57,7 +56,6 @@ target_include_directories(${TARGET_NAME}
PRIVATE ${DCMTK_INCLUDE_DIRS}
)


## #############################################################################
## Link
## #############################################################################
Expand Down
Loading