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 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
|
/*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 <QImage>
#include "BrainModelOpenGL.h"
#include "BrainModelVolume.h"
#include "BrainSet.h"
#include "CommandImageView.h"
#include "CommandShowScene.h"
#include "DebugControl.h"
#include "FileFilters.h"
#include "ImageFile.h"
#include "OffScreenOpenGLWidget.h"
#include "PreferencesFile.h"
#include "ProgramParameters.h"
#include "ScriptBuilderParameters.h"
#include "SceneFile.h"
#include "SpecFile.h"
/**
* constructor.
*/
CommandShowScene::CommandShowScene()
: CommandBase("-show-scene",
"SHOW SCENE")
{
}
/**
* destructor.
*/
CommandShowScene::~CommandShowScene()
{
}
/**
* get the script builder parameters.
*/
void
CommandShowScene::getScriptBuilderParameters(ScriptBuilderParameters& paramsOut) const
{
paramsOut.clear();
paramsOut.addFile("Spec File Name",
FileFilters::getSpecFileFilter());
paramsOut.addFile("Scene File Name",
FileFilters::getSceneFileFilter());
paramsOut.addString("Scene Name or Number (1..N)", "1");
paramsOut.addVariableListOfParameters("Optional parameters");
}
/**
* get full help information.
*/
QString
CommandShowScene::getHelpInformation() const
{
QString helpInfo =
(indent3 + getShortDescription() + "\n"
+ indent6 + parameters->getProgramNameWithoutPath() + " " + getOperationSwitch() + " \n"
+ indent9 + "<spec-file>\n"
+ indent9 + "<scene-file>\n"
+ indent9 + "<scene-name-or-number>\n"
+ indent9 + "[-image-file image-file-name images-per-row] \n"
+ indent9 + "\n"
+ indent9 + "Render an image of a scene into an image file.\n"
+ indent9 + "Note: the scene numbers start at one.\n"
+ indent9 + "\n"
+ indent9 + "If the \"scene-name-or-number\" is numeric it is interpreted\n"
+ indent9 + "to be the index of the scene (1..N) in the scene file. \n"
+ indent9 + "Otherwise, it is interpreted to be the name of the scene.\n"
+ indent9 + "\n"
+ indent9 + "If the \"-image-file\" option is specified, the images of\n"
+ indent9 + "the main and viewing windows will be placed into an image\n"
+ indent9 + "file. \"images-per-row\" specifies how the images (if there\n"
+ indent9 + "are viewing windows displayed in the scene) will be layed\n"
+ indent9 + "out.\n"
+ indent9 + "\n");
return helpInfo;
}
/**
* execute the command.
*/
void
CommandShowScene::executeCommand() throw (BrainModelAlgorithmException,
CommandException,
FileException,
ProgramParametersException,
StatisticException)
{
int imageWidth = 512;
int imageHeight = 512;
//
// Get the spec file name
//
const QString specFileName =
parameters->getNextParameterAsString("Spec File Name");
//
// Get the scene file name
//
const QString sceneFileName =
parameters->getNextParameterAsString("Scene File Name");
//
// Get the scene name or number
//
const QString sceneNameOrNumber =
parameters->getNextParameterAsString("Scene Name or Number");
//
// Save image to a file ??
//
bool saveImageToFile = false;
QString imageFileName;
int imagesPerRow = 1;
while (parameters->getParametersAvailable()) {
const QString paramName = parameters->getNextParameterAsString("Parameter");
//
// Image file name
//
if (paramName == "-image-file") {
imageFileName = parameters->getNextParameterAsString("Image File Name");
imagesPerRow = parameters->getNextParameterAsInt("Images Per Row");
saveImageToFile = true;
}
else {
throw CommandException("Unrecognized parameter: " + paramName);
}
}
//
// Read in the spec file
//
SpecFile specFile;
specFile.readFile(specFileName);
//
// Deselect all files in spec file and add scene file
//
specFile.setAllFileSelections(SpecFile::SPEC_FALSE);
specFile.addToSpecFile(SpecFile::getSceneFileTag(),
sceneFileName,
"",
false);
//
// Read the spec file into a brain set
//
QString errorMessage;
BrainSet brainSet;
if (brainSet.readSpecFile(specFile,
specFileName,
errorMessage)) {
throw CommandException("reading spec file "
+ specFileName
+ "\n"
+ errorMessage.toAscii().constData());
}
//
// Get the scene file
//
SceneFile* sceneFile = brainSet.getSceneFile();
const int numScenes = sceneFile->getNumberOfScenes();
if (numScenes <= 0) {
throw CommandException("Scene file contains no scenes.");
}
SceneFile::Scene* scene = NULL;
//
// Get the number of the scene
//
bool ok = false;
int sceneNumber = sceneNameOrNumber.toInt(&ok);
if (ok) {
if ((sceneNumber < 1) ||
(sceneNumber > numScenes)) {
throw CommandException("Invalid scene number: "
+ QString::number(sceneNumber)
+ "\n Valid Scene Numbers range from 1 to "
+ QString::number(numScenes));
}
//
// Users enter scene numbers 1 to N but C++ indexes 0 to N-1
//
sceneNumber--;
scene = sceneFile->getScene(sceneNumber);
}
else {
//
// get number of scene from name
//
scene = sceneFile->getSceneFromName(sceneNameOrNumber);
if (scene == NULL) {
throw CommandException("No scene named \""
+ sceneNameOrNumber
+ "\" was found.");
}
}
//
// Show number of scene
//
if (DebugControl::getDebugOn()) {
std::cout << "Showing scene num=" << (sceneNumber + 1)
<<": " << sceneFile->getScene(sceneNumber)->getName().toAscii().constData() << std::endl;
}
//
// Setup the scene
//
QString sceneErrorMessage, sceneWarningMessage;
brainSet.showScene(scene,
false,
sceneErrorMessage,
sceneWarningMessage);
//
// Contains images captured of all windows
//
std::vector<QImage> capturedImages;
//
// Loop through main and viewing windows
//
for (int windowNumber = 0; windowNumber < BrainModel::NUMBER_OF_BRAIN_MODEL_VIEW_WINDOWS; windowNumber++) {
//
// Get the brain model for the main window in the scene
//
QString modelError;
int geometry[4];
int glWidthWidthHeight[2];
bool yokeFlag;
BrainModel* brainModel = brainSet.showSceneGetBrainModel(scene,
windowNumber,
geometry,
glWidthWidthHeight,
yokeFlag,
modelError);
//
// Was there a brain window in "window number" window
//
if (brainModel == NULL) {
continue;
}
if (modelError.isEmpty() == false) {
sceneErrorMessage += modelError;
}
//
// Copy the transforms from "windowNumber" to window number 0
// since all image captures are performed in the "main window => 0"
//
brainModel->setTransformationsAsString(0,
brainModel->getTransformationsAsString(windowNumber));
BrainModelVolume* bmv = dynamic_cast<BrainModelVolume*>(brainModel);
if (bmv != NULL) {
int slices[3];
bmv->getSelectedOrthogonalSlices(windowNumber, slices);
bmv->setSelectedOrthogonalSlices(0, slices);
bmv->setViewStereotaxicCoordinatesFlag(0,
bmv->getViewStereotaxicCoordinatesFlag(windowNumber));
bmv->setObliqueTransformationsAsString(0,
bmv->getObliqueTransformationsAsString(windowNumber));
bmv->getSelectedObliqueSliceOffsets(windowNumber, slices);
bmv->setSelectedObliqueSliceOffsets(0, slices);
bmv->setSelectedAxis(0, bmv->getSelectedAxis(windowNumber));
}
//
// Use scene window size for image size
// note that height includes the toolbar and window title bar so shrink height some
//
imageWidth = geometry[2];
imageHeight = geometry[3];
if ((glWidthWidthHeight[0] > 0) &&
(glWidthWidthHeight[1] > 0)) {
imageWidth = glWidthWidthHeight[0];
imageHeight = glWidthWidthHeight[1];
}
else {
if (imageHeight > 200) {
imageHeight -= 100;
}
}
//
// setup the off screen renderer
//
QImage image;
OffScreenOpenGLWidget opengl;
opengl.setFixedSize(imageWidth, imageHeight);
//
// Render the image
//
opengl.drawToImage(&brainSet,
brainModel,
image);
//
// Track the image
//
capturedImages.push_back(image);
}
//
// Get background color
//
const PreferencesFile* pf = brainSet.getPreferencesFile();
unsigned char r, g, b;
pf->getSurfaceBackgroundColor(r, g, b);
const int backgroundColor[3] = { r, g, b };
//
// Combine the images
//
QImage outputImage;
ImageFile::combinePreservingAspectAndFillIfNeeded(capturedImages,
imagesPerRow,
backgroundColor,
outputImage);
ImageFile outputImageFile;
outputImageFile.setImage(outputImage);
//
// Write the image file
//
if (saveImageToFile) {
try {
outputImageFile.writeFile(imageFileName);
}
catch (FileException& e) {
sceneErrorMessage += e.whatQString();
}
//if (outputImageFile.getImage()->save(imageFileName, "jpg") == false) {
// throw CommandException("Unable to write image file: " + imageFileName);
//}
}
else {
CommandImageView::displayQImage(*outputImageFile.getImage());
}
if (sceneWarningMessage.isEmpty() == false) {
std::cout << getShortDescription().toAscii().constData()
<< " WARNING: "
<< sceneWarningMessage.toAscii().constData()
<< std::endl;
}
if (sceneErrorMessage.isEmpty() == false) {
throw CommandException(sceneErrorMessage);
}
}
|