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 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
|
#include "antsUtilities.h"
#include <algorithm>
#include <cstdio>
#include "itkCastImageFilter.h"
#include "itkImage.h"
#include "itkImageFileReader.h"
#include "itkImageFileWriter.h"
#include "itkImageRegionIteratorWithIndex.h"
#include "itkExtractImageFilter.h"
#include "itkLabelStatisticsImageFilter.h"
#include <string>
#include <vector>
namespace ants
{
template <unsigned int ImageDimension>
int
ExtractRegionFromImageByMask(int argc, char * argv[])
{
using PixelType = float;
using ImageType = itk::Image<PixelType, ImageDimension>;
using ReaderType = itk::ImageFileReader<ImageType>;
typename ReaderType::Pointer reader = ReaderType::New();
reader->SetFileName(argv[2]);
reader->Update();
typename ImageType::RegionType region;
typename ImageType::RegionType::SizeType size;
typename ImageType::RegionType::IndexType index;
if (false)
{
std::vector<int> minIndex;
std::vector<int> maxIndex;
minIndex = ConvertVector<int>(std::string(argv[4]));
maxIndex = ConvertVector<int>(std::string(argv[5]));
for (unsigned int i = 0; i < ImageDimension; i++)
{
index[i] = minIndex[i];
size[i] = maxIndex[i] - minIndex[i] + 1;
}
region.SetSize(size);
region.SetIndex(index);
}
else
{
using ShortImageType = itk::Image<unsigned short, ImageDimension>;
// typedef itk::CastImageFilter<ImageType, ShortImageType> CasterType;
// typename CasterType::Pointer caster = CasterType::New();
// caster->SetInput(reader->GetOutput());
// caster->Update();
using ShortImageReaderType = itk::ImageFileReader<ShortImageType>;
typename ShortImageReaderType::Pointer shortReader = ShortImageReaderType::New();
shortReader->SetFileName(argv[4]);
shortReader->Update();
// typedef itk::LabelStatisticsImageFilter<ShortImageType, ShortImageType>
using StatsFilterType = itk::LabelStatisticsImageFilter<ImageType, ShortImageType>;
typename StatsFilterType::Pointer stats = StatsFilterType::New();
// stats->SetLabelInput(caster->GetOutput());
stats->SetLabelInput(shortReader->GetOutput());
// stats->SetInput(caster->GetOutput());
stats->SetInput(reader->GetOutput());
stats->Update();
const unsigned int label = (argc >= 6) ? std::stoi(argv[5]) : 1;
region = stats->GetRegion(label);
std::cout << "bounding box of label=" << label << " : " << region << std::endl;
const unsigned int padWidth = (argc >= 7) ? std::stoi(argv[6]) : 0;
region.PadByRadius(padWidth);
std::cout << "padding radius = " << padWidth << " : " << region << std::endl;
region.Crop(reader->GetOutput()->GetBufferedRegion());
std::cout << "crop with original image region " << reader->GetOutput()->GetBufferedRegion() << " : " << region
<< std::endl;
}
std::cout << "final cropped region: " << region << std::endl;
using CropperType = itk::ExtractImageFilter<ImageType, ImageType>;
typename CropperType::Pointer cropper = CropperType::New();
cropper->SetInput(reader->GetOutput());
cropper->SetExtractionRegion(region);
cropper->SetDirectionCollapseToSubmatrix();
cropper->Update();
using WriterType = itk::ImageFileWriter<ImageType>;
typename WriterType::Pointer writer = WriterType::New();
writer->SetInput(cropper->GetOutput());
writer->SetFileName(argv[3]);
writer->Update();
return EXIT_SUCCESS;
}
// entry point for the library; parameter 'args' is equivalent to 'argv' in (argc,argv) of commandline parameters to
// 'main()'
int
ExtractRegionFromImageByMask(std::vector<std::string> args, std::ostream * /*out_stream = nullptr */)
{
// put the arguments coming in as 'args' into standard (argc,argv) format;
// 'args' doesn't have the command name as first, argument, so add it manually;
// 'args' may have adjacent arguments concatenated into one argument,
// which the parser should handle
args.insert(args.begin(), "ExtractRegionFromImageByMask");
int argc = args.size();
char ** argv = new char *[args.size() + 1];
for (unsigned int i = 0; i < args.size(); ++i)
{
// allocate space for the string plus a null character
argv[i] = new char[args[i].length() + 1];
std::strncpy(argv[i], args[i].c_str(), args[i].length());
// place the null character in the end
argv[i][args[i].length()] = '\0';
}
argv[argc] = nullptr;
// class to automatically cleanup argv upon destruction
class Cleanup_argv
{
public:
Cleanup_argv(char ** argv_, int argc_plus_one_)
: argv(argv_)
, argc_plus_one(argc_plus_one_)
{}
~Cleanup_argv()
{
for (unsigned int i = 0; i < argc_plus_one; ++i)
{
delete[] argv[i];
}
delete[] argv;
}
private:
char ** argv;
unsigned int argc_plus_one;
};
Cleanup_argv cleanup_argv(argv, argc + 1);
// antscout->set_stream( out_stream );
if (argc < 6 || argc > 7)
{
std::cout << "Extract a sub-region from image using the bounding"
" box from a label image, with optional padding radius."
<< std::endl
<< "Usage : " << argv[0] << " ImageDimension "
<< "inputImage outputImage labelMaskImage [label=1] [padRadius=0]" << std::endl;
if (argc >= 2 && (std::string(argv[1]) == std::string("--help") || std::string(argv[1]) == std::string("-h")))
{
return EXIT_SUCCESS;
}
return EXIT_FAILURE;
}
switch (std::stoi(argv[1]))
{
case 2:
{
return ExtractRegionFromImageByMask<2>(argc, argv);
}
break;
case 3:
{
return ExtractRegionFromImageByMask<3>(argc, argv);
}
break;
default:
std::cout << "Unsupported dimension" << std::endl;
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
} // namespace ants
|