1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
/*=========================================================================
*
* 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.
*
*=========================================================================*/
//
#include "itkThresholdLabelerImageFilter.h"
#include "itkImageRegionIterator.h"
int itkThresholdLabelerImageFilterTest( int, char *[] )
{
//
// The following code defines the input and output pixel types and their
// associated image types.
//
const unsigned int Dimension = 2;
typedef float InputPixelType;
typedef unsigned long LabeledPixelType;
typedef itk::Image<InputPixelType,Dimension> InputImageType;
typedef itk::Image<LabeledPixelType,Dimension> LabeledImageType;
// create an image with stripes to label
InputImageType::IndexType index = {{0, 0}};
InputImageType::SizeType size = {{32, 32}};
InputImageType::RegionType region;
region.SetSize(size);
region.SetIndex(index);
InputImageType::Pointer inputImage = InputImageType::New();
inputImage->SetLargestPossibleRegion(region);
inputImage->SetBufferedRegion(region);
inputImage->Allocate();
size[0] = 32;
size[1] = 8;
region.SetSize(size);
// stripe y indexes
typedef std::vector<InputImageType::IndexType::IndexValueType> IndexValueVectorType;
IndexValueVectorType yindexes;
yindexes.push_back(0);
yindexes.push_back(8);
yindexes.push_back(16);
yindexes.push_back(24);
// values for each stripe
std::vector<InputPixelType> values;
values.push_back(0.5);
values.push_back(1.5);
values.push_back(2.5);
values.push_back(3.5);
// thresholds between values
std::vector<InputPixelType> thresholds;
thresholds.push_back(1.0);
thresholds.push_back(2.0);
thresholds.push_back(3.0);
// offset
unsigned long offset = 4;
// labels
std::vector<LabeledPixelType> labels;
labels.push_back(0 + offset);
labels.push_back(1 + offset);
labels.push_back(2 + offset);
labels.push_back(3 + offset);
// fill in the image
unsigned int i;
IndexValueVectorType::const_iterator indexIter;
for (indexIter = yindexes.begin(), i=0; indexIter != yindexes.end(); ++indexIter, ++i)
{
index[0] = 0;
index[1] = *indexIter;
region.SetIndex(index);
itk::ImageRegionIterator<InputImageType> iter(inputImage,region);
for (iter.GoToBegin(); !iter.IsAtEnd(); ++iter)
{
iter.Set(values[i]);
}
}
// apply labeler filter
typedef itk::ThresholdLabelerImageFilter<InputImageType,LabeledImageType> LabelerFilterType;
LabelerFilterType::Pointer labelerFilter = LabelerFilterType::New();
labelerFilter->SetInput(inputImage);
labelerFilter->SetThresholds(thresholds);
labelerFilter->SetLabelOffset(offset);
labelerFilter->Print(std::cout);
try
{
labelerFilter->Update();
labelerFilter->SetFunctor(labelerFilter->GetFunctor());
}
catch(itk::ExceptionObject & excp)
{
std::cerr << excp << std::endl;
}
// check if labels coincide with expected labels
bool passed = true;
for (indexIter = yindexes.begin(), i=0; indexIter != yindexes.end(); ++indexIter, ++i)
{
index[0] = 0;
index[1] = *indexIter;
region.SetIndex(index);
itk::ImageRegionConstIterator<LabeledImageType> iter(labelerFilter->GetOutput(),region);
for (iter.GoToBegin(); !iter.IsAtEnd(); ++iter)
{
if (iter.Get() != labels[i])
{
passed = false;
break;
}
}
if (!passed)
{
break;
}
}
if (!passed)
{
std::cout << "Test failed." << std::endl;
std::cout << labelerFilter << std::endl;
return EXIT_FAILURE;
}
std::cout << "Test passed." << std::endl;
return EXIT_SUCCESS;
}
|