-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP feat(image-sets-normalization): add group by options
Also, remove import of "itkGDCMImageIO.h" by extracting CharStringToUTF8Converter
- Loading branch information
Showing
15 changed files
with
660 additions
and
457 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/*========================================================================= | ||
* | ||
* Copyright NumFOCUS | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0.txt | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*=========================================================================*/ | ||
#ifndef TAGS_OPTION_PARSER_H | ||
#define TAGS_OPTION_PARSER_H | ||
|
||
#include <optional> | ||
#include "rapidjson/document.h" | ||
|
||
#include "Tags.h" | ||
|
||
std::optional<const Tags> parseTags(itk::wasm::InputTextStream &tagsToRead, itk::wasm::Pipeline &pipeline) | ||
{ | ||
if (tagsToRead.GetPointer() == nullptr) | ||
{ | ||
return std::nullopt; | ||
} | ||
|
||
rapidjson::Document inputTagsDocument; | ||
const std::string inputTagsString((std::istreambuf_iterator<char>(tagsToRead.Get())), | ||
std::istreambuf_iterator<char>()); | ||
if (inputTagsDocument.Parse(inputTagsString.c_str()).HasParseError()) | ||
{ | ||
CLI::Error err("Runtime error", "Could not parse input tags JSON.", 1); | ||
pipeline.exit(err); | ||
return std::nullopt; | ||
} | ||
if (!inputTagsDocument.HasMember("tags")) | ||
{ | ||
CLI::Error err("Runtime error", "Input tags does not have expected \"tags\" member", 1); | ||
pipeline.exit(err); | ||
return std::nullopt; | ||
} | ||
|
||
const rapidjson::Value &inputTagsArray = inputTagsDocument["tags"]; | ||
|
||
Tags tags; | ||
for (rapidjson::Value::ConstValueIterator itr = inputTagsArray.Begin(); itr != inputTagsArray.End(); ++itr) | ||
{ | ||
const std::string tagString(itr->GetString()); | ||
Tag tag; | ||
tag.ReadFromPipeSeparatedString(tagString.c_str()); | ||
tags.insert(tag); | ||
} | ||
return tags; | ||
} | ||
|
||
#endif // TAGS_OPTION_PARSER_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 7 additions & 1 deletion
8
packages/dicom/typescript/src/image-sets-normalization-node-options.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,17 @@ | ||
// Generated file. To retain edits, remove this comment. | ||
|
||
import { BinaryFile } from 'itk-wasm' | ||
import { BinaryFile,JsonCompatible } from 'itk-wasm' | ||
|
||
interface ImageSetsNormalizationNodeOptions { | ||
/** DICOM files */ | ||
files: string[] | File[] | BinaryFile[] | ||
|
||
/** Create series so that all instances in a series share these tags. Option is a JSON object with a "tags" array. Example tag: "0008|103e". If not provided, defaults to Series UID and Frame Of Reference UID tags. */ | ||
seriesGroupBy?: JsonCompatible | ||
|
||
/** Create image sets so that all series in a set share these tags. Option is a JSON object with a "tags" array. Example tag: "0008|103e". If not provided, defaults to Study UID tag. */ | ||
imageSetGroupBy?: JsonCompatible | ||
|
||
} | ||
|
||
export default ImageSetsNormalizationNodeOptions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 7 additions & 1 deletion
8
packages/dicom/typescript/src/image-sets-normalization-options.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,17 @@ | ||
// Generated file. To retain edits, remove this comment. | ||
|
||
import { BinaryFile, WorkerPoolFunctionOption } from 'itk-wasm' | ||
import { BinaryFile,JsonCompatible, WorkerPoolFunctionOption } from 'itk-wasm' | ||
|
||
interface ImageSetsNormalizationOptions extends WorkerPoolFunctionOption { | ||
/** DICOM files */ | ||
files: string[] | File[] | BinaryFile[] | ||
|
||
/** Create series so that all instances in a series share these tags. Option is a JSON object with a "tags" array. Example tag: "0008|103e". If not provided, defaults to Series UID and Frame Of Reference UID tags. */ | ||
seriesGroupBy?: JsonCompatible | ||
|
||
/** Create image sets so that all series in a set share these tags. Option is a JSON object with a "tags" array. Example tag: "0008|103e". If not provided, defaults to Study UID tag. */ | ||
imageSetGroupBy?: JsonCompatible | ||
|
||
} | ||
|
||
export default ImageSetsNormalizationOptions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.