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
|
/*=========================================================================
Program: Image Guided Surgery Software Toolkit
Module: $RCSfile: igstkCrossHairSpatialObjectTest.cxx,v $
Language: C++
Date: $Date: 2009-06-18 20:31:18 $
Version: $Revision: 1.10 $
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)
//Warning about: identifier was truncated to '255' characters in the
//debug information (MVC6.0 Debug)
#pragma warning( disable : 4786 )
#endif
#include "igstkFLTKWidget.h"
#include "igstkView2D.h"
#include "igstkCrossHairSpatialObject.h"
#include "igstkCrossHairObjectRepresentation.h"
#include "igstkImageResliceObjectRepresentation.h"
#include "igstkReslicerPlaneSpatialObject.h"
#include "igstkImageSpatialObject.h"
#include "igstkCTImageReader.h"
#include "igstkLogger.h"
#include "itkStdStreamLogOutput.h"
#include "igstkAxesObject.h"
#include "igstkEvents.h"
#include "igstkTransform.h"
#include "igstkVTKLoggerOutput.h"
#include "igstkMouseTracker.h"
#include "igstkMouseTrackerTool.h"
#include "igstkCylinderObject.h"
namespace CrossHairSpatialObjectTest
{
igstkObserverObjectMacro(CTImage,
::igstk::CTImageReader::ImageModifiedEvent,::igstk::CTImageSpatialObject)
igstkObserverMacro( VTKImage, ::igstk::VTKImageModifiedEvent,
::igstk::EventHelperType::VTKImagePointerType );
}
int igstkCrossHairSpatialObjectTest( int argc, char * argv[] )
{
if( argc < 3 )
{
std::cerr << " Missing arguments: " << argv[0] << "CTImage "
<< "\tScreenshot filename " << std::endl;
return EXIT_FAILURE;
}
typedef short PixelType;
const unsigned int Dimension = 3;
typedef igstk::ImageSpatialObject<PixelType,Dimension> ImageSpatialObjectType;
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 CrossHairSpatialObjectTest::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 CrossHairSpatialObjectTest::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();
int imageExtent[6];
imageData->GetWholeExtent( imageExtent );
std::cout << "Image extent: " << "(" << imageExtent[0] << ","
<< imageExtent[1] << ","
<< imageExtent[2] << ","
<< imageExtent[3] << ","
<< imageExtent[4] << ","
<< imageExtent[5] << ")" << std::endl;
//Connect the image spatial object to the reference coordinate system
imageSpatialObject->RequestSetTransformAndParent( identity, worldReference );
// Set a 2D View
typedef igstk::View2D View2DType;
View2DType::Pointer view2D = View2DType::New();
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 );
view2D->RequestSetTransformAndParent( identity, worldReference );
view2D->SetRefreshRate( 40 );
form->end();
form->show();
typedef igstk::CrossHairSpatialObject ObjectType;
typedef igstk::CrossHairObjectRepresentation RepresentationType;
ObjectType::Pointer crossHairObject = ObjectType::New();
//Connect the cross hair spatial object to the reference coordinate system
crossHairObject->RequestSetTransformAndParent( identity, worldReference );
//trigger ReportInvalidBoundingBoxProviderSpatialObjectProcessing in coverage.
crossHairObject->RequestSetBoundingBoxProviderSpatialObject( NULL );
// Set bounding box provider spatial object to the cross hair object
crossHairObject->RequestSetBoundingBoxProviderSpatialObject( imageSpatialObject );
RepresentationType::Pointer crossHairObjectRepresentation = RepresentationType::New();
crossHairObjectRepresentation->SetLogger( logger );
crossHairObjectRepresentation->RequestSetCrossHairObject( crossHairObject );
crossHairObjectRepresentation->Print( std::cout );
crossHairObject->Print( std::cout );
crossHairObjectRepresentation->GetNameOfClass();
crossHairObject->GetNameOfClass();
// Set image representation
typedef igstk::ImageResliceObjectRepresentation< ImageSpatialObjectType >
ImageRepresentationType;
ImageRepresentationType::Pointer imageRepresentation = ImageRepresentationType::New();
imageRepresentation->SetWindowLevel( 1559, -244 );
imageRepresentation->RequestSetImageSpatialObject( imageSpatialObject );
//Instantiate and use a reslicer plane spatial object
typedef igstk::ReslicerPlaneSpatialObject ReslicerPlaneType;
ReslicerPlaneType::Pointer reslicerPlaneSpatialObject = ReslicerPlaneType::New();
// Select Orthogonal reslicing mode
reslicerPlaneSpatialObject->RequestSetReslicingMode( ReslicerPlaneType::Orthogonal );
// Select Axial orientation type
reslicerPlaneSpatialObject->RequestSetOrientationType( ReslicerPlaneType::Axial );
// Set bounding box provider spatial object to the reslicer plane object
reslicerPlaneSpatialObject->RequestSetBoundingBoxProviderSpatialObject( imageSpatialObject );
// Set the reslicer plane spatial object to the Representation
imageRepresentation->RequestSetReslicePlaneSpatialObject( reslicerPlaneSpatialObject );
// add the image representation to the view
view2D->RequestAddObject( imageRepresentation );
// add the cross hair representation to the view
view2D->RequestAddObject( crossHairObjectRepresentation );
crossHairObjectRepresentation->SetColor(0,1,0);
crossHairObjectRepresentation->SetLineWidth(1);
// a variable to hold image index
typedef ImageSpatialObjectType::IndexType IndexType;
typedef IndexType::IndexValueType IndexValueType;
IndexType index;
// a variable to hold world point coords
ImageSpatialObjectType::PointType point;
// auxiliar
const double *data = NULL;
// Select axial orientation in the reslicer plane and view
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]));
imageSpatialObject->TransformIndexToPhysicalPoint( index, point );
data = point.GetVnlVector().data_block();
reslicerPlaneSpatialObject->RequestSetCursorPosition( data );
crossHairObject->RequestSetCursorPosition( data );
view2D->RequestStart();
view2D->RequestResetCamera();
view2D->RequestStop();
Fl::wait( 0.2 );
igstk::PulseGenerator::CheckTimeouts();
view2D->RequestSaveScreenShot( argv[2] );
Fl::wait( 0.2 );
igstk::PulseGenerator::CheckTimeouts();
view2D->RequestStop();
// Moving the cursor
IndexType index2 = index;
view2D->RequestStart();
for (unsigned int i=0; i<200; i++)
{
index2[0] += i;
index2[1] += i;
imageSpatialObject->TransformIndexToPhysicalPoint( index2, point );
data = point.GetVnlVector().data_block();
reslicerPlaneSpatialObject->RequestSetCursorPosition( data );
crossHairObject->RequestSetCursorPosition( data );
view2D->RequestResetCamera();
Fl::wait( 0.01 );
igstk::PulseGenerator::CheckTimeouts();
Fl::check(); // trigger FLTK redraws
}
//More code coverage calls.
crossHairObject->RequestSetToolSpatialObject( NULL );
point = crossHairObject->TransformToPoint(identity);
imageSpatialObject->TransformIndexToPhysicalPoint( index, point );
data = point.GetVnlVector().data_block();
reslicerPlaneSpatialObject->RequestSetCursorPosition( data );
crossHairObject->RequestSetCursorPosition( data );
view2D->RequestResetCamera();
Fl::wait( 0.01 );
igstk::PulseGenerator::CheckTimeouts();
typedef igstk::MouseTracker MouseTrackerType;
MouseTrackerType::Pointer tracker = MouseTrackerType::New();
tracker->SetLogger( logger );
tracker->RequestSetTransformAndParent( identity, worldReference );
tracker->RequestOpen();
typedef igstk::MouseTrackerTool TrackerToolType;
typedef TrackerToolType::TransformType TransformType;
// instantiate and attach wired tracker tool
TrackerToolType::Pointer trackerTool = TrackerToolType::New();
trackerTool->SetLogger( logger );
std::string mouseName = "PS/s";
trackerTool->RequestSetMouseName( mouseName );
//Configure
trackerTool->RequestConfigure();
//Attach to the tracker
trackerTool->RequestAttachToTracker( tracker );
//Add observer to listen to events throw by the tracker tool
igstk::CylinderObject::Pointer toolObject = igstk::CylinderObject::New();
toolObject->RequestSetTransformAndParent(identity, trackerTool);
crossHairObject->RequestSetToolSpatialObject( toolObject );
tracker->RequestStartTracking();
for (unsigned int i=0; i<200; i++)
{
Fl::wait( 0.01 );
igstk::PulseGenerator::CheckTimeouts();
Fl::check(); // trigger FLTK redraws
view2D->RequestResetCamera();
}
view2D->RequestRemoveObject( crossHairObjectRepresentation );
view2D->RequestRemoveObject( NULL );
delete fltkWidget2D;
delete form;
std::cout << "[SUCCESS]" << std::endl;
return EXIT_SUCCESS;
}
|