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 386 387 388 389 390 391 392 393 394 395 396 397 398 399
|
/*=========================================================================
Program: Image Guided Surgery Software Toolkit
Module: $RCSfile: igstkImageResliceObjectRepresentationFltkTest2.cxx,v $
Language: C++
Date: $Date: 2011-02-09 10:15:40 $
Version: $Revision: 1.8 $
Copyright (c) ISC Insight Software Consortium. All rights reserved.
See IGSTKCopyright.txt or http://www.igstk.org/copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#if defined(_MSC_VER)
#pragma warning ( disable : 4786 )
#endif
#include "igstkFLTKWidget.h"
#include "igstkConfigure.h"
#include "igstkImageResliceObjectRepresentation.h"
#include "igstkAxesObject.h"
#include "igstkImageSpatialObject.h"
#include "igstkCTImageReader.h"
#include "igstkVTKLoggerOutput.h"
#include "igstkLogger.h"
#include "itkStdStreamLogOutput.h"
#include "igstkEvents.h"
#include "igstkCylinderObject.h"
#include "igstkTransform.h"
#include "igstkView2D.h"
namespace ImageResliceObjectRepresentationFltkTest2
{
igstkObserverObjectMacro(CTImage,
::igstk::CTImageReader::ImageModifiedEvent,::igstk::CTImageSpatialObject)
igstkObserverMacro( VTKImage, ::igstk::VTKImageModifiedEvent,
::igstk::EventHelperType::VTKImagePointerType );
}
/** This test demonstrates how to perform orthogonal reslicing in the manual reslicing mode.
* The reslicing position and orientation are set by means of RequestSetCursorPosition() and
* RequestSetOrientationType(). Then we span the reslicing plane along each orthogonal
* direction (i.e. axial, sagittal and coronal).
*/
int igstkImageResliceObjectRepresentationFltkTest2( int argc , char * argv [] )
{
std::cout << " igstkImageResliceObjectRepresentationFltkTest2: application started " << std::endl;
igstk::RealTimeClock::Initialize();
if( argc < 3 )
{
std::cerr << " Missing arguments: " << argv[0] << "CTImage " \
<< "Output image file for a screenshot" << std::endl;
return EXIT_FAILURE;
}
typedef short PixelType;
const unsigned int Dimension = 3;
// the reslicer plane we want to test.
typedef igstk::ReslicerPlaneSpatialObject ReslicerPlaneType;
// we will use an ImageSpatialObject as the bounding box provider for the ReslicerPlane
typedef igstk::ImageSpatialObject< PixelType, Dimension >
ImageSpatialObjectType;
typedef ImageSpatialObjectType::IndexType::IndexValueType IndexValueType;
typedef igstk::Object::LoggerType LoggerType;
typedef itk::StdStreamLogOutput LogOutputType;
// logger object created for logging mouse activities
LoggerType::Pointer logger = LoggerType::New();
LogOutputType::Pointer logOutput = LogOutputType::New();
logOutput->SetStream( std::cout );
logger->AddLogOutput( logOutput );
logger->SetPriorityLevel( LoggerType::DEBUG );
// Create an igstk::VTKLoggerOutput and then test it.
igstk::VTKLoggerOutput::Pointer vtkLoggerOutput =
igstk::VTKLoggerOutput::New();
vtkLoggerOutput->OverrideVTKWindow();
vtkLoggerOutput->SetLogger(logger);// redirect messages from VTK
// OutputWindow -> logger
// Create Axes object to act as a reference coordinate system
typedef igstk::AxesObject AxesObjectType;
AxesObjectType::Pointer worldReference = AxesObjectType::New();
worldReference->SetSize(3.0, 3.0, 3.0);
// Define identity transform
igstk::Transform identity;
identity.SetToIdentity( igstk::TimeStamp::GetLongestPossibleTime() );
typedef igstk::CTImageReader ReaderType;
ReaderType::Pointer reader = ReaderType::New();
//reader->SetLogger( logger );
//set up CT image observer
typedef ImageResliceObjectRepresentationFltkTest2::CTImageObserver
CTImageObserverType;
CTImageObserverType::Pointer ctImageObserver = CTImageObserverType::New();
reader->AddObserver(::igstk::CTImageReader::ImageModifiedEvent(), ctImageObserver);
/* Read in a DICOM series */
std::cout << "Reading CT image : " << argv[1] << std::endl;
ReaderType::DirectoryNameType directoryName = argv[1];
reader->RequestSetDirectory( directoryName );
reader->RequestReadImage();
reader->RequestGetImage();
if(!ctImageObserver->GotCTImage())
{
std::cout << "No CTImage!" << std::endl;
std::cout << "[FAILED]" << std::endl;
return EXIT_FAILURE;
}
// Set input image spatial object
ImageSpatialObjectType::Pointer imageSpatialObject = ImageSpatialObjectType::New();
imageSpatialObject = ctImageObserver->GetCTImage();
//Determine the image parameters
//first access the VTK image data
typedef ImageResliceObjectRepresentationFltkTest2::VTKImageObserver
VTKImageObserverType;
VTKImageObserverType::Pointer vtkImageObserver = VTKImageObserverType::New();
imageSpatialObject->AddObserver( ::igstk::VTKImageModifiedEvent(),
vtkImageObserver );
vtkImageObserver->Reset();
imageSpatialObject->RequestGetVTKImage();
if( !vtkImageObserver->GotVTKImage() )
{
std::cout << "No VTKImage!" << std::endl;
std::cout << "[FAILED]" << std::endl;
return EXIT_FAILURE;
}
vtkImageData * imageData = vtkImageObserver->GetVTKImage();
/* Compute image bounds */
double imageSpacing[3];
imageData->GetSpacing( imageSpacing );
std::cout << "Image spacing: " << "(" << imageSpacing[0] << ","
<< imageSpacing[1] << ","
<< imageSpacing[2] << ")" << std::endl;
double imageOrigin[3];
imageData->GetOrigin( imageOrigin );
std::cout << "Image origin: " << "(" << imageOrigin[0] << ","
<< imageOrigin[1] << ","
<< imageOrigin[2] << ")" << std::endl;
int imageExtent[6];
imageData->GetWholeExtent( imageExtent );
std::cout << "Image extent: " << "(" << imageExtent[0] << ","
<< imageExtent[1] << ","
<< imageExtent[2] << ","
<< imageExtent[3] << ","
<< imageExtent[4] << ","
<< imageExtent[5] << ")" << std::endl;
double bounds[] = { imageOrigin[0] + imageSpacing[0]*imageExtent[0], //xmin
imageOrigin[0] + imageSpacing[0]*imageExtent[1], //xmax
imageOrigin[1] + imageSpacing[1]*imageExtent[2], //ymin
imageOrigin[1] + imageSpacing[1]*imageExtent[3], //ymax
imageOrigin[2] + imageSpacing[2]*imageExtent[4], //zmin
imageOrigin[2] + imageSpacing[2]*imageExtent[5]};//zmax
for ( unsigned int i = 0; i <= 4; i += 2 ) // reverse bounds if necessary
{
if ( bounds[i] > bounds[i+1] )
{
double t = bounds[i+1];
bounds[i+1] = bounds[i];
bounds[i] = t;
}
}
std::cout << "Image bounds: " << "(" << bounds[0] << ","
<< bounds[1] << ","
<< bounds[2] << ","
<< bounds[3] << ","
<< bounds[4] << ","
<< bounds[5] << ")" << std::endl;
//Connect the image spatial object to the reference coordinate system
imageSpatialObject->RequestSetTransformAndParent( identity, worldReference );
// Set a 2D View
// Set a 2D View
typedef igstk::View2D View2DType;
View2DType::Pointer view2D = View2DType::New();
// view2D->SetLogger( logger );
view2D->RequestResetCamera();
Fl_Window * form = new Fl_Window(512,512,"igstkImageResliceObjectRepresentationFltkTest2");
typedef igstk::FLTKWidget FLTKWidgetType;
// instantiate FLTK widget
FLTKWidgetType * fltkWidget2D =
new FLTKWidgetType(0,0,512,512,"2D View");
fltkWidget2D->RequestSetView( view2D );
// fltkWidget2D->SetLogger( logger );
view2D->RequestSetTransformAndParent( identity, worldReference );
view2D->SetRefreshRate( 40 );
form->end();
form->show();
typedef igstk::ImageResliceObjectRepresentation< ImageSpatialObjectType >
ImageResliceRepresentationType;
ImageResliceRepresentationType::Pointer imageResliceRepresentation =
ImageResliceRepresentationType::New();
//imageResliceRepresentation->SetLogger( logger );
imageResliceRepresentation->SetWindowLevel( 1559, -244 );
imageResliceRepresentation->RequestSetImageSpatialObject( imageSpatialObject );
// code coverage
imageResliceRepresentation->SetRestrictPlaneToVolume(0);
imageResliceRepresentation->SetTextureInterpolate(0);
imageResliceRepresentation->SetResliceInterpolate(0);
// a variable to hold image index
ImageSpatialObjectType::IndexType index;
// a variable to hold world point coords
ImageSpatialObjectType::PointType point;
// initialize the tool transform in the middle of the image
index[0] = static_cast<IndexValueType>(0.5*(imageExtent[0]+imageExtent[1]));
index[1] = static_cast<IndexValueType>(0.5*(imageExtent[2]+imageExtent[3]));
index[2] = static_cast<IndexValueType>(0.5*(imageExtent[4]+imageExtent[5]));
imageSpatialObject->TransformIndexToPhysicalPoint( index, point );
// auxiliar
const double *data = NULL;
data = point.GetVnlVector().data_block();
// Instantiate and use a reslicer plane spatial object
typedef igstk::ReslicerPlaneSpatialObject ReslicerPlaneType;
ReslicerPlaneType::Pointer reslicerPlaneSpatialObject = ReslicerPlaneType::New();
// reslicerPlaneSpatialObject->SetLogger( logger );
// select Orthogonal reslicing mode
reslicerPlaneSpatialObject->RequestSetReslicingMode( ReslicerPlaneType::Orthogonal );
// set Axial orientation type
reslicerPlaneSpatialObject->RequestSetOrientationType( ReslicerPlaneType::Axial );
// set bounding box provider spatial object to the reslicer plane object
reslicerPlaneSpatialObject->RequestSetBoundingBoxProviderSpatialObject( imageSpatialObject );
// set transform and parent to the reslicer plane
reslicerPlaneSpatialObject->RequestSetTransformAndParent( identity, worldReference );
// set the reslicer plane spatial object to the image representation
imageResliceRepresentation->RequestSetReslicePlaneSpatialObject( reslicerPlaneSpatialObject );
view2D->RequestDetachFromParent();
view2D->RequestSetTransformAndParent( identity, reslicerPlaneSpatialObject );
view2D->SetCameraParallelProjection(true);
// add the image representation to the view
view2D->RequestAddObject( imageResliceRepresentation );
// Start the view
view2D->RequestStart();
std::cout << "Axial view: " << std::endl;
reslicerPlaneSpatialObject->RequestSetOrientationType( ReslicerPlaneType::Axial );
// view2D->RequestSetOrientation( View2DType::Axial );
view2D->RequestResetCamera();
view2D->RequestResetCamera();
// Iteratively change the tool transform to reslice through the image
for(unsigned int i=(unsigned int)(imageExtent[4]); i<=(unsigned int)(imageExtent[5]); i++)
{
index[2] = static_cast<IndexValueType>(i);
imageSpatialObject->TransformIndexToPhysicalPoint( index, point );
data = point.GetVnlVector().data_block();
std::cout << data[0] << " " << data[1] << " " << data[2] << " axial slice # " << i << std::endl;
reslicerPlaneSpatialObject->RequestSetCursorPosition( data );
Fl::wait( 0.01 );
igstk::PulseGenerator::CheckTimeouts();
}
// Change slice orientation to sagittal
std::cout << "Sagittal view: " << std::endl;
reslicerPlaneSpatialObject->RequestSetOrientationType( ReslicerPlaneType::Sagittal );
// view2D->RequestSetOrientation( View2DType::Sagittal );
view2D->RequestResetCamera();
view2D->RequestResetCamera();
// Iteratively change the tool transform to reslice through the image
for(unsigned int i=(unsigned int)(imageExtent[0]); i<(unsigned int)(imageExtent[1]); i++)
{
index[0] = static_cast<IndexValueType>(i);
imageSpatialObject->TransformIndexToPhysicalPoint( index, point );
const double *data = point.GetVnlVector().data_block();
std::cout << data[0] << " " << data[1] << " " << data[2] << " sagittal slice # " << i << std::endl;
reslicerPlaneSpatialObject->RequestSetCursorPosition( data );
Fl::wait( 0.01 );
igstk::PulseGenerator::CheckTimeouts();
}
/* Change slice orientation to coronal */
std::cout << "Coronal view: " << std::endl;
reslicerPlaneSpatialObject->RequestSetOrientationType( ReslicerPlaneType::Coronal );
// view2D->RequestSetOrientation( View2DType::Coronal );
view2D->RequestResetCamera();
view2D->RequestResetCamera();
// Iteratively change the tool transform to reslice through the image
for(unsigned int i=(unsigned int)(imageExtent[2]); i<(unsigned int)(imageExtent[3]); i++)
{
index[1] = static_cast<IndexValueType>(i);
imageSpatialObject->TransformIndexToPhysicalPoint( index, point );
const double *data = point.GetVnlVector().data_block();
std::cout << data[0] << " " << data[1] << " " << data[2] << " coronal slice # " << i << std::endl;
reslicerPlaneSpatialObject->RequestSetCursorPosition( data );
Fl::wait( 0.01 );
igstk::PulseGenerator::CheckTimeouts();
}
//Reslice to the center axial slice and take a screenshot.
//
view2D->RequestStop();
// view2D->RequestSetOrientation( View2DType::Axial );
reslicerPlaneSpatialObject->RequestSetOrientationType( ReslicerPlaneType::Axial );
index[0] = static_cast<IndexValueType>(0.5*(imageExtent[0]+imageExtent[1]));
index[1] = static_cast<IndexValueType>(0.5*(imageExtent[2]+imageExtent[3]));
index[2] = static_cast<IndexValueType>(0.5*(imageExtent[4]+imageExtent[5]));
view2D->RequestStart();
view2D->RequestResetCamera();
view2D->RequestResetCamera();
imageSpatialObject->TransformIndexToPhysicalPoint( index, point );
data = point.GetVnlVector().data_block();
std::cout << " index " << index << " point " << point << "\n";
std::cout << "Saving snapshot to: " << argv[2] << std::endl;
Fl::wait( 0.1 );
igstk::PulseGenerator::CheckTimeouts();
view2D->RequestStop();
Fl::wait( 0.1 );
igstk::PulseGenerator::CheckTimeouts();
view2D->RequestSaveScreenShot( argv[2] );
//Fl::wait( 0.1 );
//igstk::PulseGenerator::CheckTimeouts();
view2D->RequestStop();
delete fltkWidget2D;
form->hide();
delete form;
if( vtkLoggerOutput->GetNumberOfErrorMessages() > 0 )
{
std::cout << "Got VTK Logger errors!" << std::endl;
std::cout << "[FAILED]" << std::endl;
return EXIT_FAILURE;
}
std::cout << "[SUCCESS]" << std::endl;
return EXIT_SUCCESS;
}
|