/threshold3D.py Secret
Created
September 16, 2016 23:49
This file contains hidden or 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
#========================================================================== | |
# | |
# Copyright Insight Software Consortium | |
# | |
# 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 | |
# | |
# http://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. | |
# | |
#==========================================================================*/ | |
# INPUTS: {BrainProtonDensitySlice.png} | |
# OUTPUTS: {ThresholdSegmentationLevelSetImageFilterWhiteMatter.png} | |
# 60 116 5 150 180 | |
# INPUTS: {BrainProtonDensitySlice.png} | |
# OUTPUTS: {ThresholdSegmentationLevelSetImageFilterVentricle.png} | |
# 81 112 5 210 250 | |
# INPUTS: {BrainProtonDensitySlice.png} | |
# OUTPUTS: {ThresholdSegmentationLevelSetImageFilterGrayMatter.png} | |
# 107 69 5 180 210 | |
from __future__ import print_function | |
import itk | |
from sys import argv, stderr, exit | |
# itk.auto_progress(2) | |
# itk.auto_progress(1) | |
if len(argv) < 9: | |
print(( | |
"Missing Parameters \n Usage: " | |
"ThresholdSegmentationLevelSetImageFilter.py inputImage outputImage " | |
"seedX seedY seedZ InitialDistance LowerThreshold UpperThreshold " | |
"[CurvatureScaling == 1.0]"), file=stderr) | |
exit(1) | |
InternalPixelType = itk.F | |
Dimension = 3 | |
InternalImageType = itk.Image[InternalPixelType, Dimension] | |
OutputPixelType = itk.F | |
OutputImageType = itk.Image[OutputPixelType, Dimension] | |
thresholder = itk.BinaryThresholdImageFilter[ | |
InternalImageType, OutputImageType].New() | |
thresholder.SetLowerThreshold(-1000.0) | |
thresholder.SetUpperThreshold(0.0) | |
thresholder.SetOutsideValue(0) | |
thresholder.SetInsideValue(255) | |
ReaderType = itk.ImageFileReader[InternalImageType] | |
WriterType = itk.ImageFileWriter[OutputImageType] | |
reader = ReaderType.New() | |
writer = WriterType.New() | |
reader.SetImageIO(itk.NrrdImageIO.New()) | |
writer.SetImageIO(itk.NrrdImageIO.New()) | |
reader.SetFileName(argv[1]) | |
writer.SetFileName(argv[2]) | |
FastMarchingFilterType = itk.FastMarchingImageFilter[ | |
InternalImageType, | |
InternalImageType] | |
fastMarching = FastMarchingFilterType.New() | |
ThresholdSegLvlSetImgFilterType = itk.ThresholdSegmentationLevelSetImageFilter[ | |
InternalImageType, | |
InternalImageType, | |
InternalPixelType] | |
thresholdSegmentation = ThresholdSegLvlSetImgFilterType.New() | |
thresholdSegmentation.SetPropagationScaling(1.0) | |
if len(argv) > 9: | |
thresholdSegmentation.SetCurvatureScaling(float(argv[9])) | |
else: | |
thresholdSegmentation.SetCurvatureScaling(1.0) | |
thresholdSegmentation.SetMaximumRMSError(0.02) | |
thresholdSegmentation.SetNumberOfIterations(1200) | |
thresholdSegmentation.SetUpperThreshold(float(argv[8])) | |
thresholdSegmentation.SetLowerThreshold(float(argv[7])) | |
thresholdSegmentation.SetIsoSurfaceValue(0.0) | |
thresholdSegmentation.SetInput(fastMarching.GetOutput()) | |
thresholdSegmentation.SetFeatureImage(reader.GetOutput()) | |
thresholder.SetInput(thresholdSegmentation.GetOutput()) | |
writer.SetInput(thresholder.GetOutput()) | |
NodeType = itk.LevelSetNode[InternalPixelType, Dimension] | |
NodeContainer = itk.VectorContainer[itk.UI, NodeType] | |
seeds = NodeContainer.New() | |
seedPosition = [int(argv[3]), int(argv[4]), int(argv[5])] | |
initialDistance = float(argv[6]) | |
node = NodeType() | |
seedValue = - initialDistance | |
node.SetValue(seedValue) | |
node.SetIndex(seedPosition) | |
seeds.Initialize() | |
seeds.InsertElement(0, node) | |
fastMarching.SetTrialPoints(seeds) | |
fastMarching.SetSpeedConstant(1.0) | |
reader.Update() | |
fastMarching.SetOutputSize( | |
reader.GetOutput().GetBufferedRegion().GetSize()) | |
writer.Update() | |
itk.echo(thresholdSegmentation) | |
InternalWriterType = itk.ImageFileWriter[InternalImageType] | |
mapWriter = InternalWriterType.New() | |
mapWriter.SetInput(fastMarching.GetOutput()) | |
mapWriter.SetFileName("fastMarchingImage.mha") | |
mapWriter.Update() | |
speedWriter = InternalWriterType.New() | |
speedWriter.SetInput(thresholdSegmentation.GetSpeedImage()) | |
speedWriter.SetFileName("speedTermImage.mha") | |
speedWriter.Update() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment