/*========================================================================= Program: Visualization Toolkit Module: TestGPURayCastDepthPeelingTransVol.cxx 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. =========================================================================*/ /** * Tests depth peeling pass with volume rendering. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int TestGPURayCastDepthPeelingTransVol(int argc, char* argv[]) { // Volume peeling is only supported through the dual depth peeling algorithm. // If the current system only supports the legacy peeler, skip this test: vtkNew renWin; vtkNew iren; iren->SetRenderWindow(renWin); vtkNew ren; renWin->Render(); // Create the context renWin->AddRenderer(ren); vtkOpenGLRenderer* oglRen = vtkOpenGLRenderer::SafeDownCast(ren); assert(oglRen); // This test should only be enabled for OGL2 backend. // This will print details about why depth peeling is unsupported: oglRen->SetDebug(true); bool supported = oglRen->IsDualDepthPeelingSupported(); oglRen->SetDebug(false); if (!supported) { std::cerr << "Skipping test; volume peeling not supported.\n"; return VTK_SKIP_RETURN_CODE; } double scalarRange[2]; vtkNew volumeMapper; vtkNew reader; const char* volumeFile = vtkTestUtilities::ExpandDataFileName(argc, argv, "Data/vase_1comp.vti"); reader->SetFileName(volumeFile); delete[] volumeFile; volumeMapper->SetInputConnection(reader->GetOutputPort()); volumeMapper->GetInput()->GetScalarRange(scalarRange); volumeMapper->SetSampleDistance(0.1); volumeMapper->SetAutoAdjustSampleDistances(0); volumeMapper->SetBlendModeToComposite(); renWin->SetMultiSamples(0); renWin->SetSize(800, 400); vtkNew scalarOpacity; scalarOpacity->AddPoint(50, 0.0); scalarOpacity->AddPoint(75, 0.06); vtkNew volumeProperty; volumeProperty->ShadeOn(); volumeProperty->SetInterpolationType(VTK_LINEAR_INTERPOLATION); volumeProperty->SetScalarOpacity(scalarOpacity); vtkSmartPointer colorTransferFunction = volumeProperty->GetRGBTransferFunction(0); colorTransferFunction->RemoveAllPoints(); colorTransferFunction->AddRGBPoint(scalarRange[0], 0.9, 0.4, 0.9); vtkSmartPointer volume = vtkSmartPointer::New(); volume->SetMapper(volumeMapper); volume->SetProperty(volumeProperty); int dims[3]; double spacing[3], center[3], origin[3]; reader->Update(); vtkSmartPointer im = reader->GetOutput(); im->GetDimensions(dims); im->GetOrigin(origin); im->GetSpacing(spacing); // sphere 1 center[0] = origin[0] + spacing[0] * dims[0] / 2.0; center[1] = origin[1] + spacing[1] * dims[1] / 2.0; center[2] = origin[2] + spacing[2] * dims[2] / 2.0; vtkNew sphereSource; sphereSource->SetCenter(center); sphereSource->SetRadius(dims[1] / 3.0); vtkNew sphereActor; vtkProperty* sphereProperty = sphereActor->GetProperty(); sphereProperty->SetColor(0.5, 0.9, 0.7); sphereProperty->SetOpacity(0.3); vtkNew sphereMapper; sphereMapper->SetInputConnection(sphereSource->GetOutputPort()); sphereActor->SetMapper(sphereMapper); // sphere 2 center[0] += 15.0; center[1] += 15.0; center[2] += 15.0; vtkNew sphereSource2; sphereSource2->SetCenter(center); sphereSource2->SetRadius(dims[1] / 3.0); vtkNew sphereActor2; sphereProperty = sphereActor2->GetProperty(); sphereProperty->SetColor(0.9, 0.4, 0.1); sphereProperty->SetOpacity(0.3); vtkNew sphereMapper2; sphereMapper2->SetInputConnection(sphereSource2->GetOutputPort()); sphereActor2->SetMapper(sphereMapper2); // sphere 3 (transparent) vtkNew sphereActorTransp; vtkProperty* sphereProperty3 = sphereActorTransp->GetProperty(); sphereProperty3->SetColor(0.0, 1.0, 0.0); sphereProperty3->SetOpacity(0.0); vtkNew sphereMapperTransp; sphereMapperTransp->SetInputConnection(sphereSource->GetOutputPort()); sphereActorTransp->SetMapper(sphereMapperTransp); // Translucent spheres ren->SetBackground(1.0, 1.0, 1.0); ren->SetViewport(0.0, 0.0, 0.5, 1.0); ren->AddVolume(volume); ren->AddActor(sphereActor); ren->AddActor(sphereActor2); ren->SetUseDepthPeeling(1); ren->SetOcclusionRatio(0.0); ren->SetMaximumNumberOfPeels(17); ren->SetUseDepthPeelingForVolumes(true); // Fully transparent sphere vtkNew ren2; ren2->SetBackground(1.0, 1.0, 1.0); ren2->SetViewport(0.5, 0.0, 1.0, 1.0); ren2->SetActiveCamera(ren->GetActiveCamera()); ren2->AddVolume(volume); ren2->AddActor(sphereActorTransp); ren2->SetUseDepthPeeling(1); ren2->SetOcclusionRatio(0.0); ren2->SetMaximumNumberOfPeels(17); ren2->SetUseDepthPeelingForVolumes(true); renWin->AddRenderer(ren2); vtkNew style; renWin->GetInteractor()->SetInteractorStyle(style); ren->ResetCamera(); ren->GetActiveCamera()->Azimuth(-55); ren->GetActiveCamera()->Elevation(35); ren->GetActiveCamera()->OrthogonalizeViewUp(); renWin->Render(); iren->Initialize(); int retVal = vtkRegressionTestImage(renWin); if (retVal == vtkRegressionTester::DO_INTERACTOR) { iren->Start(); } return !retVal; }