/*========================================================================= Program: Visualization Toolkit Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/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 notice for more information. =========================================================================*/ // This test checks the effects of changing sample distance on the GPURayCast // volume mapper #include "vtkCamera.h" #include "vtkColorTransferFunction.h" #include "vtkGPUVolumeRayCastMapper.h" #include "vtkImageData.h" #include "vtkNew.h" #include "vtkPiecewiseFunction.h" #include "vtkRTAnalyticSource.h" #include "vtkRenderWindow.h" #include "vtkRenderWindowInteractor.h" #include "vtkRenderer.h" #include "vtkVolume.h" #include "vtkVolumeProperty.h" #include "vtkXMLImageDataReader.h" #include "vtkRegressionTestImage.h" #include "vtkTestUtilities.h" //------------------------------------------------------------------------------ int TestGPURayCastMapperSampleDistance(int argc, char* argv[]) { vtkNew wavelet; wavelet->SetWholeExtent(-127, 128, -127, 128, -127, 128); wavelet->SetCenter(0.0, 0.0, 0.0); vtkNew volumeMapper; volumeMapper->SetInputConnection(wavelet->GetOutputPort()); volumeMapper->SetAutoAdjustSampleDistances(0); volumeMapper->SetSampleDistance(20); vtkNew volumeProperty; vtkNew ctf; ctf->AddRGBPoint(37.3531, 0.2, 0.29, 1); ctf->AddRGBPoint(157.091, 0.87, 0.87, 0.87); ctf->AddRGBPoint(276.829, 0.7, 0.015, 0.15); vtkNew pwf; pwf->AddPoint(37.3531, 0.0); pwf->AddPoint(276.829, 1.0); volumeProperty->SetColor(ctf); volumeProperty->SetScalarOpacity(pwf); vtkNew volume; volume->SetMapper(volumeMapper); volume->SetProperty(volumeProperty); vtkNew renderWindow; renderWindow->SetSize(300, 300); renderWindow->Render(); // make sure we have an OpenGL context. vtkNew renderer; renderer->AddVolume(volume); renderer->ResetCamera(); renderWindow->AddRenderer(renderer); vtkNew iren; iren->SetRenderWindow(renderWindow); int valid = volumeMapper->IsRenderSupported(renderWindow, volumeProperty); int retVal; if (valid) { renderWindow->Render(); iren->Initialize(); retVal = vtkRegressionTestImage(renderWindow); if (retVal == vtkRegressionTester::DO_INTERACTOR) { iren->Start(); } } else { retVal = vtkTesting::PASSED; cout << "Required extensions not supported." << endl; } return !((retVal == vtkTesting::PASSED) || (retVal == vtkTesting::DO_INTERACTOR)); }