SimpleITK  
Segmentation/NeighborhoodConnectedImageFilter.cxx
/*=========================================================================
*
* 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
*
* 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.
*
*=========================================================================*/
#if defined(_MSC_VER)
# pragma warning(disable : 4786)
#endif
#include "sitkImage.h"
#include <stdlib.h>
#include <iostream>
namespace sitk = itk::simple;
int
main(int argc, char * argv[])
{
//
// Check command line parameters
//
if (argc < 7)
{
std::cerr << "Missing Parameters " << std::endl;
std::cerr << "Usage: " << argv[0];
std::cerr << " inputImage outputImage lowerThreshold upperThreshold seedX seedY [seed2X seed2Y ... ]" << std::endl;
return 1;
}
//
// Read the image
//
reader.SetFileName(std::string(argv[1]));
sitk::Image image = reader.Execute();
//
// Set up writer
//
writer.SetFileName(std::string(argv[2]));
//
// Blur using CurvatureFlowImageFilter
//
blurFilter.SetNumberOfIterations(5);
blurFilter.SetTimeStep(0.125);
image = blurFilter.Execute(image);
//
// Set up NeighborhoodConnectedImageFilter for segmentation
//
segmentationFilter.SetLower(atof(argv[3]));
segmentationFilter.SetUpper(atof(argv[4]));
segmentationFilter.SetReplaceValue(255);
std::vector<unsigned int> radius = { 2, 2 };
segmentationFilter.SetRadius(radius);
for (int i = 5; i + 1 < argc; i += 2)
{
std::vector<unsigned int> seed = { (unsigned int)atoi(argv[i]), (unsigned int)atoi(argv[i + 1]) };
segmentationFilter.AddSeed(seed);
std::cout << "Adding a seed at ";
for (unsigned int j = 0; j < seed.size(); ++j)
{
std::cout << seed[j] << " ";
}
std::cout << std::endl;
}
sitk::Image outImage = segmentationFilter.Execute(image);
//
// Write out the resulting file
//
writer.Execute(outImage);
return 0;
}
Denoise an image using curvature driven flow.
Self & SetNumberOfIterations(uint32_t NumberOfIterations)
Read an image file and return a SimpleITK Image.
Image Execute() override
Set/Get The output PixelType of the image.
Self & SetFileName(const PathType &fn)
Write out a SimpleITK image to the specified file location.
Self & SetFileName(const PathType &fileName)
Self & Execute(const Image &)
The Image class for SimpleITK.
Definition sitkImage.h:77
Label pixels that are connected to a seed and lie within a neighborhood.
Self & AddSeed(std::vector< unsigned int > point)
Add SeedList point.