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 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
|
/*LICENSE_START*/
/*
* Copyright 1995-2002 Washington University School of Medicine
*
* http://brainmap.wustl.edu
*
* This file is part of CARET.
*
* CARET is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* CARET is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with CARET; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
/*LICENSE_END*/
#include "BrainModelVolumeSegmentationStereotaxic.h"
#include "BrainSet.h"
#include "CommandVolumeSegmentationStereotaxicSpace.h"
#include "FileFilters.h"
#include "ProgramParameters.h"
#include "ScriptBuilderParameters.h"
#include "SegmentationMaskListFile.h"
#include "SpecFile.h"
#include "VolumeFile.h"
/**
* constructor.
*/
CommandVolumeSegmentationStereotaxicSpace::CommandVolumeSegmentationStereotaxicSpace()
: CommandBase("-volume-segment-stereo-space",
"VOLUME SEGMENTATION STEREOTAXIC SPACE")
{
}
/**
* destructor.
*/
CommandVolumeSegmentationStereotaxicSpace::~CommandVolumeSegmentationStereotaxicSpace()
{
}
/**
* get the script builder parameters.
*/
void
CommandVolumeSegmentationStereotaxicSpace::getScriptBuilderParameters(ScriptBuilderParameters& paramsOut) const
{
std::vector<BrainModelVolumeSureFitSegmentation::ERROR_CORRECTION_METHOD> errorCorrectionValues;
std::vector<QString> errorCorrectionNames;
BrainModelVolumeSureFitSegmentation::getErrorCorrectionMethodsAndNames(
errorCorrectionNames, errorCorrectionValues);
paramsOut.clear();
paramsOut.addFile("Input Anatomical Volume File Name", FileFilters::getVolumeAnatomyFileFilter());
paramsOut.addFile("Spec File Name", FileFilters::getSpecFileFilter());
paramsOut.addListOfItems("Volume Error Correction", errorCorrectionNames, errorCorrectionNames);
paramsOut.addVariableListOfParameters("Options");
}
/**
* get full help information.
*/
QString
CommandVolumeSegmentationStereotaxicSpace::getHelpInformation() const
{
std::vector<BrainModelVolumeSureFitSegmentation::ERROR_CORRECTION_METHOD> errorCorrectionValues;
std::vector<QString> errorCorrectionNames;
BrainModelVolumeSureFitSegmentation::getErrorCorrectionMethodsAndNames(
errorCorrectionNames, errorCorrectionValues);
SegmentationMaskListFile maskVolumeListFile;
getMaskVolumeListFile(maskVolumeListFile, false);
QString helpInfo =
(indent3 + getShortDescription() + "\n"
+ indent6 + parameters->getProgramNameWithoutPath() + " " + getOperationSwitch() + " \n"
+ indent9 + "<input-anatomical-volume-file-name>\n"
+ indent9 + "<spec-file-name>\n"
+ indent9 + "<volume-error-correction-method>\n"
+ indent9 + "[-ecs]\n"
+ indent9 + "[-flat]\n"
+ indent9 + "[-mp]\n"
+ indent9 + "[-noeye]\n"
+ indent9 + "\n"
+ indent9 + "Perform automatic segmentation of an anatomical volume\n"
+ indent9 + "in a known stereotaxic space.\n"
+ indent9 + "\n"
+ indent9 + " \n"
+ indent9 + " THIS IS EXPERIMENTAL BUT IT WILL PRODUCE A SURFACE \n"
+ indent9 + " \n"
+ indent9 + " The input spec file must contain the stereotaxic space and the \n"
+ indent9 + " structure (LEFT or RIGHT) for this command to operate. A spec \n"
+ indent9 + " is created by running this program with the \"-spec-file-create\" \n"
+ indent9 + " command. \n"
+ indent9 + " \n"
+ indent9 + " This input volume must be in one of the supported stereotaxic \n"
+ indent9 + " spaces with the origin at the anterior commissure. The volume \n"
+ indent9 + " should not have non-uniformity (bias) problems. The input \n"
+ indent9 + " volume is cropped to a single hemisphere, the voxels are \n"
+ indent9 + " mapped to the range 0 to 255, the gray and white matter \n"
+ indent9 + " histogram peaks are estimated, the volume is segmented, and \n"
+ indent9 + " fiducial and inflated surfaces are generated. \n"
+ indent9 + " \n"
+ indent9 + " volume-error-correction-method\n");
for (unsigned int i = 0; i < errorCorrectionNames.size(); i++) {
helpInfo += (
indent9 + indent9 + errorCorrectionNames[i] + "\n");
}
helpInfo += ("\n"
+ indent9 + " Stereotaxic Spaces Supported \n"
+ maskVolumeListFile.getAvailableMasks(indent9 +" ")
+ indent9 + " \n"
+ indent9 + " OPTIONS \n"
+ indent9 + " -ecs Perform error correction of the surface. \n"
+ indent9 + " \n"
+ indent9 + " -flat Generate files for flattening (very inflated, ellipsoidal, \n"
+ indent9 + " paint, and surface shape. \n"
+ indent9 + " \n"
+ indent9 + " -mp Generate surface with maxmimum number of polygons. \n"
+ indent9 + " \n"
+ indent9 + " -noeye Do NOT disconnect eye and strip skull \n"
+ indent9 + " \n"
+ indent9 + "\n");
return helpInfo;
}
/**
* execute the command.
*/
void
CommandVolumeSegmentationStereotaxicSpace::executeCommand() throw (BrainModelAlgorithmException,
CommandException,
FileException,
ProgramParametersException,
StatisticException)
{
const QString inputVolumeFileName =
parameters->getNextParameterAsString("Input Anatomical Volume File Name");
const QString specFileName =
parameters->getNextParameterAsString("Spec File Name");
const QString volumeErrorCorrectionName =
parameters->getNextParameterAsString("Volume Error Correction Name");
bool disconnectEyeAndSkull = true;
bool errorCorrectSurfaceFlag = false;
bool maxPolygonsFlag = false;
bool flatteningFlag = false;
int uniformityIterations = BrainModelVolumeSegmentationStereotaxic::getDefaultUniformityIterations();
while (parameters->getParametersAvailable()) {
const QString paramName = parameters->getNextParameterAsString("Segment Option");
if (paramName == "-ecs") {
errorCorrectSurfaceFlag = true;
}
else if (paramName == "-flat") {
flatteningFlag = true;
}
else if (paramName == "-mp") {
maxPolygonsFlag = true;
}
else if (paramName == "-noeye") {
disconnectEyeAndSkull = false;
}
else if (paramName == "-uniform") {
uniformityIterations = parameters->getNextParameterAsInt("Uniformity Iterations");
}
else {
throw CommandException("Unexpected parameter "
+ paramName);
}
}
//
// Get error correction
//
std::vector<BrainModelVolumeSureFitSegmentation::ERROR_CORRECTION_METHOD> errorCorrectionValues;
std::vector<QString> errorCorrectionNames;
BrainModelVolumeSureFitSegmentation::getErrorCorrectionMethodsAndNames(
errorCorrectionNames, errorCorrectionValues);
BrainModelVolumeSureFitSegmentation::ERROR_CORRECTION_METHOD errorCorrectionMethod =
BrainModelVolumeSureFitSegmentation::ERROR_CORRECTION_METHOD_NONE;
bool foundErrorCorrectionFlag = false;
for (unsigned int i = 0; i < errorCorrectionNames.size(); i++) {
if (volumeErrorCorrectionName == errorCorrectionNames[i]) {
errorCorrectionMethod = errorCorrectionValues[i];
foundErrorCorrectionFlag = true;
break;
}
}
if (foundErrorCorrectionFlag == false) {
throw CommandException("Invalid error correction: " + volumeErrorCorrectionName);
}
//
// Read in segmentation masks list file
//
SegmentationMaskListFile maskVolumeListFile;
getMaskVolumeListFile(maskVolumeListFile, true);
//
// Setup spec file with anatomy volume file name and params file
//
SpecFile specFile;
try {
specFile.readFile(specFileName);
}
catch (FileException& e) {
throw CommandException("Unable to read spec file: "
+ e.whatQString());
}
//
// Clear surface files from spec file and disk
//
specFile.clearFiles(false, // volume files
true, // surface files,
false, // other files
true); // remove the files
//
// Select anatomy and params
//
specFile.setAllFileSelections(SpecFile::SPEC_FALSE);
specFile.addToSpecFile(SpecFile::getVolumeAnatomyFileTag(),
inputVolumeFileName,
"",
false);
if (specFile.paramsFile.getNumberOfFiles() > 0) {
specFile.paramsFile.setSelected(specFile.paramsFile.getFileName(0),
true,
Structure::STRUCTURE_TYPE_CORTEX_BOTH);
}
//
// Create a brain set
//
BrainSet brainSet(true);
QString specReadMsg;
brainSet.readSpecFile(specFile,
specFileName,
specReadMsg);
if (specReadMsg.isEmpty() == false) {
throw CommandException("Reading spec file: "
+ specReadMsg);
}
//
// Perform the segmentation operations
//
BrainModelVolumeSegmentationStereotaxic segment(&brainSet,
brainSet.getVolumeAnatomyFile(0),
uniformityIterations,
disconnectEyeAndSkull,
errorCorrectionMethod,
errorCorrectSurfaceFlag,
maxPolygonsFlag,
flatteningFlag);
//
// Execute the segmentation
//
segment.execute();
}
/**
* get the segmentation mask file.
*/
void
CommandVolumeSegmentationStereotaxicSpace::getMaskVolumeListFile(
SegmentationMaskListFile& smlf,
const bool throwExceptionIfReadErrorFlag) const throw (CommandException)
{
const QString maskVolumesDirectory(BrainSet::getCaretHomeDirectory()
+ "/data_files/segmentation_masks/");
const QString maskVolumeListFileName = maskVolumesDirectory
+ "mask_list.txt.csv";
try {
smlf.readFile(maskVolumeListFileName);
}
catch (FileException& e) {
if (throwExceptionIfReadErrorFlag) {
throw CommandException(e);
}
else {
std::cout << "ERROR: Failed to read :"
<< maskVolumeListFileName.toAscii().constData()
<< std::endl;
}
}
}
|