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 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476
|
/*=========================================================================
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.kitware.com/VolViewCopyright.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 notice for more information.
=========================================================================*/
#include "vtkKWInteractorStyleImageView.h"
#include "vtkImageReslice.h"
#include "vtkKWEvent.h"
#include "vtkImageData.h"
#include "vtkKW3DMarkersWidget.h"
#include "vtkKWImageMapToWindowLevelColors.h"
#include "vtkKWImageWidget.h"
#include "vtkKWRenderWidget.h"
#include "vtkObjectFactory.h"
#include "vtkRenderWindowInteractor.h"
#include "vtkRenderer.h"
#include "vtkCamera.h"
#include "vtkKWProbeImageWidget.h"
#include "vtkMath.h"
vtkCxxRevisionMacro(vtkKWInteractorStyleImageView, "$Revision: 1.46 $");
vtkStandardNewMacro(vtkKWInteractorStyleImageView);
//----------------------------------------------------------------------------
vtkKWInteractorStyleImageView::vtkKWInteractorStyleImageView()
{
}
//----------------------------------------------------------------------------
vtkKWInteractorStyleImageView::~vtkKWInteractorStyleImageView()
{
}
//----------------------------------------------------------------------------
void vtkKWInteractorStyleImageView::Roll()
{
vtkKWProbeImageWidget *widget =
vtkKWProbeImageWidget::SafeDownCast(this->Get2DRenderWidget());
if (!widget)
{
return;
}
vtkRenderWindowInteractor *rwi = this->Interactor;
double *center = this->CurrentRenderer->GetCenter();
double newAngle =
atan2((double)rwi->GetEventPosition()[1] - (double)center[1],
(double)rwi->GetEventPosition()[0] - (double)center[0]);
double oldAngle =
atan2((double)rwi->GetLastEventPosition()[1] - (double)center[1],
(double)rwi->GetLastEventPosition()[0] - (double)center[0]);
newAngle = vtkMath::DegreesFromRadians( newAngle );
oldAngle = vtkMath::DegreesFromRadians( oldAngle );
widget->RollPlane(newAngle - oldAngle);
}
//----------------------------------------------------------------------------
void vtkKWInteractorStyleImageView::StopRoll()
{
}
//----------------------------------------------------------------------------
void vtkKWInteractorStyleImageView::Reslice()
{
// Copy from vtkInteractorStyleTrackballCamera::Rotate()
vtkKWProbeImageWidget *widget =
vtkKWProbeImageWidget::SafeDownCast(this->Get2DRenderWidget());
if (!widget)
{
return;
}
vtkRenderWindowInteractor *rwi = this->Interactor;
int dx = rwi->GetEventPosition()[0] - rwi->GetLastEventPosition()[0];
int dy = rwi->GetEventPosition()[1] - rwi->GetLastEventPosition()[1];
int *size = this->CurrentRenderer->GetSize();
double delta_elevation = 6.0 / size[1];
double delta_azimuth = -6.0 / size[0];
double motionFactor = 0.20;
double rxf = (double)dx * delta_azimuth * motionFactor;
double ryf = (double)dy * delta_elevation * motionFactor;
rxf *= vtkMath::DegreesFromRadians( rxf );
ryf *= vtkMath::DegreesFromRadians( ryf );
widget->TiltPlane(rxf, ryf);
this->InvokeEvent(vtkKWEvent::ResliceChangingEvent, NULL);
}
//----------------------------------------------------------------------------
void vtkKWInteractorStyleImageView::StopReslice()
{
this->InvokeEvent(vtkKWEvent::ResliceChangedEvent, NULL);
}
//----------------------------------------------------------------------------
// This method is called when a Translate action happens. It moves the
// reslice plane in and out (along the plane normal) based on y motion
//----------------------------------------------------------------------------
void vtkKWInteractorStyleImageView::InAndOut()
{
// Make sure we have the right widget type - otherwise this
// operation does not make sense
vtkKWProbeImageWidget *widget =
vtkKWProbeImageWidget::SafeDownCast(this->Get2DRenderWidget());
if (!widget)
{
return;
}
// Get the y motion
vtkRenderWindowInteractor *rwi = this->Interactor;
int dy = rwi->GetEventPosition()[1] - rwi->GetLastEventPosition()[1];
// Get the window size
int *size = this->CurrentRenderer->GetSize();
// Convert motion into a fraction of the window size
double motionFactor = 0.2;
double factor = (double)dy * motionFactor / size[1];
// Move the reslice plane
widget->TranslatePlane(factor);
// Cause other areas of the app to update themselves
// due to this change
this->InvokeEvent(vtkKWEvent::ResliceChangingEvent, NULL);
}
//----------------------------------------------------------------------------
void vtkKWInteractorStyleImageView::StopInAndOut()
{
this->InvokeEvent(vtkKWEvent::ResliceChangedEvent, NULL);
}
//----------------------------------------------------------------------------
void vtkKWInteractorStyleImageView::StartWindowLevel()
{
if (!this->Interactor || !this->ImageMapToRGBA)
{
return;
}
this->InitialWindow = this->ImageMapToRGBA->GetWindow();
this->InitialLevel = this->ImageMapToRGBA->GetLevel();
this->InitialX = this->Interactor->GetEventPosition()[0];
this->InitialY = this->Interactor->GetEventPosition()[1];
}
//----------------------------------------------------------------------------
void vtkKWInteractorStyleImageView::WindowLevel()
{
if (!this->ImageMapToRGBA)
{
vtkErrorMacro(
"Trying to change window/level before setting ImageMapToRGBA");
return;
}
if (!this->ImageMapToRGBA->GetInput())
{
return;
}
vtkRenderWindowInteractor *rwi = this->Interactor;
if (!rwi || !this->CurrentRenderer)
{
return;
}
int *size = this->CurrentRenderer->GetSize();
int x = rwi->GetEventPosition()[0];
int y = rwi->GetEventPosition()[1];
// compute normalized delta
double dx = 4.0 * (x - this->InitialX) / size[0];
double dy = 4.0 * (y - this->InitialY) / size[1];
// scale by current values
double min_window = 0.000001;
if (fabs(this->InitialWindow) > min_window)
{
dx *= this->InitialWindow;
}
else
{
dx = dx * (this->InitialWindow < 0 ? -min_window : min_window);
}
double min_level = 0.000001;
if (fabs(this->InitialLevel) > min_level)
{
dy *= this->InitialLevel;
}
else
{
dy = dy * (this->InitialLevel < 0 ? -min_level : min_level);
}
// abs so that direction does not flip
if (this->InitialWindow < 0.0)
{
dx *= -1;
}
if (this->InitialLevel < 0.0)
{
dy *= -1;
}
// compute new window level
double newWindow = dx + this->InitialWindow;
double newLevel = this->InitialLevel - dy;
// stay away from zero and really
double near_zero = 0.000001;
if (fabs(newWindow) < near_zero)
{
newWindow = near_zero * (newWindow < 0 ? -1 : 1);
}
if (fabs(newLevel) < near_zero)
{
newLevel = near_zero * (newLevel < 0 ? -1 : 1);
}
vtkImageData *input = vtkImageData::SafeDownCast(
this->ImageMapToRGBA->GetInput());
if (input &&
input->GetScalarType() != VTK_FLOAT &&
input->GetScalarType() != VTK_DOUBLE)
{
newWindow = (long)newWindow;
newLevel = (long)newLevel;
}
this->SetWindowLevel(newWindow, newLevel);
double args[3];
args[0] = newWindow;
args[1] = newLevel;
args[2] = this->EventIdentifier;
this->InvokeEvent(vtkKWEvent::WindowLevelChangingEvent, args);
}
//----------------------------------------------------------------------------
void vtkKWInteractorStyleImageView::StopWindowLevel()
{
if (!this->ImageMapToRGBA)
{
return;
}
double args[3];
args[0] = this->ImageMapToRGBA->GetWindow();
args[1] = this->ImageMapToRGBA->GetLevel();
args[2] = this->EventIdentifier;
// Give two option to process this action
// WindowLevelChangingEndEvent: since during interaction WindowLevel() was
// invoking WindowLevelChangingEvent, let's invoke something telling that
// the interaction is done.
// WindowLevelChangedEvent: the usual one (for compatibility).
this->InvokeEvent(vtkKWEvent::WindowLevelChangingEndEvent, args);
this->InvokeEvent(vtkKWEvent::WindowLevelChangedEvent, args);
}
//----------------------------------------------------------------------------
void vtkKWInteractorStyleImageView::StopPan()
{
vtkKWRenderWidget *widget = this->GetRenderWidget();
if (!widget)
{
return;
}
vtkRenderer *ren = widget->GetRenderer();
if (!ren)
{
return;
}
vtkCamera *cam = ren->GetActiveCamera();
if (!cam)
{
return;
}
double FPoint[3];
cam->GetFocalPoint(FPoint);
double PPoint[3];
cam->GetPosition(PPoint);
double args[7];
args[0] = FPoint[0];
args[1] = FPoint[1];
args[2] = FPoint[2];
args[3] = PPoint[0];
args[4] = PPoint[1];
args[5] = PPoint[2];
args[6] = this->EventIdentifier;
this->InvokeEvent(vtkKWInteractorStyleImageView::
ImageCameraFocalPointAndPositionChangedEndEvent, args);
}
//----------------------------------------------------------------------------
void vtkKWInteractorStyleImageView::StopZoom()
{
vtkKWRenderWidget *widget = this->GetRenderWidget();
if (!widget)
{
return;
}
vtkRenderer *ren = widget->GetRenderer();
if (!ren)
{
return;
}
vtkCamera *cam = ren->GetActiveCamera();
if (!cam)
{
return;
}
double FPoint[3];
cam->GetFocalPoint(FPoint);
double PPoint[3];
cam->GetPosition(PPoint);
double args[8];
args[0] = FPoint[0];
args[1] = FPoint[1];
args[2] = FPoint[2];
args[3] = PPoint[0];
args[4] = PPoint[1];
args[5] = PPoint[2];
if (cam->GetParallelProjection())
{
args[6] = cam->GetParallelScale();
}
else
{
args[6] = 0;
}
args[7] = this->EventIdentifier;
this->InvokeEvent(vtkKWInteractorStyleImageView::
ZoomFactorChangedEndEvent, args);
}
//----------------------------------------------------------------------------
void vtkKWInteractorStyleImageView::PlaceMarker3D()
{
vtkKWImageWidget *widget =
vtkKWImageWidget::SafeDownCast(this->Get2DRenderWidget());
if (!widget)
{
return;
}
int *event_pos = this->Interactor->GetEventPosition();
double RPoint[3];
if (widget->GetMarkers3D()->GetEnabled() &&
widget->ComputeWorldCoordinate(event_pos[0], event_pos[1], RPoint))
{
double args[3];
args[0] = RPoint[0];
args[1] = RPoint[1];
args[2] = RPoint[2];
this->InvokeEvent(vtkKWEvent::Marker3DAddMarkerEvent, args);
}
}
//----------------------------------------------------------------------------
int vtkKWInteractorStyleImageView::PerformAction(const char* action)
{
if (!action)
{
return 0;
}
if (!strcmp(action, "PlaceMarker3D"))
{
this->PlaceMarker3D();
return 1;
}
else if (!strcmp(action, "Roll"))
{
this->Roll();
return 1;
}
else if (!strcmp(action, "Reslice"))
{
this->Reslice();
return 1;
}
else if (!strcmp(action, "Translate"))
{
this->InAndOut();
return 1;
}
return this->Superclass::PerformAction(action);
}
//----------------------------------------------------------------------------
int vtkKWInteractorStyleImageView::StopAction(const char* action)
{
int res = 0;
if (!action)
{
return res;
}
if (this->Superclass::StopAction(action))
{
res = 1;
}
else
{
if (!strcmp(action, "Roll"))
{
this->StopRoll();
res = 1;
}
else if (!strcmp(action, "Reslice"))
{
this->StopReslice();
res = 1;
}
else if (!strcmp(action, "Translate"))
{
this->StopInAndOut();
res = 1;
}
}
return res;
}
//----------------------------------------------------------------------------
void vtkKWInteractorStyleImageView::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}
|