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
|
#include "antsUtilities.h"
#include <algorithm>
#include "ReadWriteData.h"
#include "itkSurfaceImageCurvature.h"
namespace ants
{
// entry point for the library; parameter 'args' is equivalent to 'argv' in (argc,argv) of commandline parameters to
// 'main()'
int
SurfaceBasedSmoothing(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(), "SurfaceBasedSmoothing");
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 < 3)
{
std::cout << " usage : " << argv[0] << " ImageToSmooth sigma SurfaceImage outname {numrepeatsofsmoothing}"
<< std::endl;
std::cout << " We assume the SurfaceImage has a label == 1 that defines the surface " << std::endl;
std::cout << " sigma defines the geodesic n-hood radius --- numrepeats allows one to use " << std::endl;
std::cout << " a small geodesic n-hood repeatedly applied many times -- faster computation, same effect "
<< std::endl;
return 0;
}
using ImageType = itk::Image<float, 3>;
enum
{
ImageDimension = ImageType::ImageDimension
};
using floatImageType = itk::Image<float, ImageDimension>;
using ParamType = itk::SurfaceImageCurvature<ImageType>;
ParamType::Pointer Parameterizer = ParamType::New();
// std::string fn="C://Data//brain15labelimage.img";
float opt = 0;
float sig = 1.0;
// float thresh=0.0;
if (argc > 2)
{
sig = atof(argv[2]);
}
unsigned int numrepeats = 0;
if (argc > 5)
{
numrepeats = std::stoi(argv[5]);
}
ImageType::Pointer input;
ReadImage<ImageType>(input, argv[1]);
ImageType::Pointer surflabel;
ReadImage<ImageType>(surflabel, argv[3]);
Parameterizer->SetInputImage(surflabel);
Parameterizer->SetFunctionImage(input);
Parameterizer->SetNeighborhoodRadius(sig);
if (sig <= 0)
{
sig = 1.0;
}
std::cout << " sigma " << sig << " thresh " << opt << std::endl;
Parameterizer->SetSigma(sig);
Parameterizer->SetUseGeodesicNeighborhood(true);
Parameterizer->SetUseLabel(true);
Parameterizer->SetThreshold(0.5);
// Parameterizer->ComputeSurfaceArea();
// Parameterizer->IntegrateFunctionOverSurface();
Parameterizer->SetNeighborhoodRadius(sig);
std::cout << " begin integration NOW " << std::endl;
Parameterizer->IntegrateFunctionOverSurface(true);
for (unsigned int i = 0; i < numrepeats; i++)
{
Parameterizer->IntegrateFunctionOverSurface(true);
}
std::cout << " end integration " << std::endl;
// Parameterizer->PostProcessGeometry();
// double mn=0.0;
ImageType::Pointer output = nullptr;
floatImageType::Pointer smooth = nullptr;
smooth = Parameterizer->GetFunctionImage();
std::string ofn = std::string(argv[4]);
std::cout << " writing result " << ofn << std::endl;
// writer->SetFileName(ofn.c_str());
// writer->SetInput( smooth );
ANTs::WriteImage<ImageType>(smooth, ofn.c_str());
std::cout << " done writing ";
return 1;
}
} // namespace ants
|