#include "volumerenderermanagerdata.h" /******************************************************************************************** ** Start of data viewmanagerData *********************************************************************************************/ #include "vtkStripper.h" #include "boxSurfaceObserver.h" #include "vtkProperty.h" #include #if VTK_MAJOR_VERSION >= 5 #if VTK_MINOR_VERSION >= 6 #include "vtkGPUVolumeRayCastMapper.h" #endif #endif using namespace std; VolumeRendererManagerData::VolumeRendererManagerData(vtkImageData* vol, bool usegpu){ Initialize(vol, "", usegpu); } VolumeRendererManagerData::VolumeRendererManagerData(vtkImageData* vol, std::string dataname){ Initialize(vol, dataname); } VolumeRendererManagerData::VolumeRendererManagerData(vtkImageData* vol, vtkRenderer* render, std::string dataname){ Initialize(vol, dataname); render->AddActor(this->getProp3D()); } void VolumeRendererManagerData::Initialize(vtkImageData* vol, std::string dataname, bool usegpu){ _id = 0; _vol = vol; _dataname = dataname; _volumePlanes = vtkPlanes::New(); _volumeProperty = vtkVolumeProperty::New(); _volumeProperty->SetInterpolationTypeToLinear(); //_volumeProperty->ShadeOn(); _volumeProperty->DisableGradientOpacityOn(); _tfun = vtkPiecewiseFunction::New(); _volumeProperty->SetScalarOpacity(_tfun ); _ctfun = vtkColorTransferFunction::New(); _newvol = vtkVolume::New(); _newvol->SetProperty(_volumeProperty ); _compositeFunction = 0; _MIPFunction = 0; BoxWidget = 0; /* EED9Juin2011 if(usegpu && _vol->GetDataDimension() > 2){ _volumeMappergpu = vtkGPUVolumeRayCastMapper::New(); _volumeMappergpu->SetClippingPlanes( _volumePlanes ); _volumeMappergpu->AutoAdjustSampleDistancesOn(); _newvol->SetMapper(_volumeMappergpu ); _volumeMappergpu->SetInput( _vol ); _volumeMappergpu->Update(); }else{ _compositeFunction = vtkVolumeRayCastCompositeFunction::New(); _MIPFunction = vtkVolumeRayCastMIPFunction::New(); _volumeMapper = vtkVolumeRayCastMapper::New(); _volumeMapper->SetVolumeRayCastFunction(_compositeFunction); _volumeMapper->SetClippingPlanes( _volumePlanes ); _volumeMapper->AutoAdjustSampleDistancesOn(); _newvol->SetMapper(_volumeMapper ); _volumeMapper->SetInput( _vol ); _volumeMapper->Update(); } */ VolumeMapper = 0; #if VTK_MAJOR_VERSION >= 5 #if VTK_MINOR_VERSION >= 6 vtkGPUVolumeRayCastMapper * volumeMappergpu = vtkGPUVolumeRayCastMapper::New(); volumeMappergpu->AutoAdjustSampleDistancesOn(); VolumeMapper = volumeMappergpu; #endif #else _volumeProperty->SetColor(_ctfun); _compositeFunction = vtkVolumeRayCastCompositeFunction::New(); _MIPFunction = vtkVolumeRayCastMIPFunction::New(); vtkVolumeRayCastMapper* volumeMapper = vtkVolumeRayCastMapper::New(); volumeMapper->SetVolumeRayCastFunction(_compositeFunction); volumeMapper->AutoAdjustSampleDistancesOn(); VolumeMapper = volumeMapper; #endif VolumeMapper->SetClippingPlanes( _volumePlanes ); _newvol->SetMapper(VolumeMapper ); VolumeMapper->SetInput( _vol ); VolumeMapper->Update(); _newvol->Update(); } VolumeRendererManagerData::~VolumeRendererManagerData() { _tfun->Delete(); _ctfun->Delete(); _volumePlanes->Delete(); _volumeProperty->Delete(); _newvol->Delete(); if(_compositeFunction) _compositeFunction->Delete(); if(_MIPFunction) _MIPFunction->Delete(); if(VolumeMapper) VolumeMapper->Delete(); if(BoxWidget){ DisableBoundingBox(); } } void VolumeRendererManagerData::SetIndependentComponents(bool independent){ if(!independent){ _volumeProperty->IndependentComponentsOff(); }else{ _volumeProperty->IndependentComponentsOn(); } } void VolumeRendererManagerData::EnableBoundingBox(vtkRenderWindowInteractor* interactor) { //EED9Juin2011 if(_volumeMappergpu){ if(!BoxWidget){ BoxWidget = vtkBoxWidget::New(); BoxWidget->SetInteractor( interactor ); BoxWidget->SetPlaceFactor(1.01); BoxWidget->SetInput( _vol ); BoxWidget->InsideOutOn(); BoxWidget->PlaceWidget(); vtkBoxWidgetCallback *callback = vtkBoxWidgetCallback::New(); callback->SetMapper(VolumeMapper); BoxWidget->AddObserver(vtkCommand::InteractionEvent, callback); callback->Delete(); BoxWidget->EnabledOn(); BoxWidget->GetSelectedFaceProperty()->SetOpacity(0.0); cout<<"JPRG::VolumeRendererManagerData::EnableBoundingBox::CREATE"<EnabledOn(); cout<<"JPRG::VolumeRendererManagerData::EnableBoundingBox"<EnabledOff(); //BoxWidget->Delete(); //BoxWidget = 0; cout<<"JPRG::VolumeRendererManagerData::DisableBoundingBox"<& greylevelcolors, std::vector& red, std::vector& green, std::vector& blue) { _ctfun->RemoveAllPoints(); for(unsigned int i = 0; i < greylevelcolors.size();i++){ _ctfun->AddRGBPoint(greylevelcolors[i], red[i],green[i], blue[i]); //std::cout<<"VolumeRendererManagerData::setVolumeColor "<Update(); } /** ** Volume Opacity **/ void VolumeRendererManagerData::setVolumeOpacity(std::vector greylevel,std::vector value){ _tfun->RemoveAllPoints(); for(unsigned int i = 0; i < greylevel.size();i++){ _tfun->AddPoint(greylevel[i], value[i]); //std::cout<<"VolumeRendererManagerData::setVolumeOpacity "<Update(); } /** ** Volume Opacity **/ void VolumeRendererManagerData::setVolumeOpacity(std::vector greylevel,double value){ std::vector valuevector; for(unsigned i = 0; i < greylevel.size(); i++){ valuevector.push_back(value); } setVolumeOpacity(greylevel, valuevector); } /** ** Check if the variables are setted correctly **/ void VolumeRendererManagerData::checkInvariant()throw (char *){ if(!_compositeFunction){ throw "No composite function initialized"; } if(!_MIPFunction){ throw "No MIP function initialized"; } if(!VolumeMapper){ throw "No volume mapper initialized"; } } /** ** Check if the variables are setted correctly **/ void VolumeRendererManagerData::Update(){ _newvol->Update(); } /** ** get the prop3D **/ vtkProp3D* VolumeRendererManagerData::getProp3D(){ return this->_newvol; } /** ** return the id from the daat **/ int VolumeRendererManagerData::getId(){ return _id; } /** ** set data id **/ void VolumeRendererManagerData::setId(int propid){ _id = propid; } /** ** Get the filanme **/ std::string VolumeRendererManagerData::getDataname(){ return _dataname; } /** ** Set the filanme **/ void VolumeRendererManagerData::setDataname(std::string dataname){ _dataname = dataname; } void VolumeRendererManagerData::changeCompositeMIPFunction(int function){ //checkInvariant(); if(VolumeMapper){ #if VTK_MAJOR_VERSION >= 5 #if VTK_MINOR_VERSION >= 6 if(dynamic_cast(VolumeMapper)){ vtkVolumeRayCastMapper* volumemapper = dynamic_cast(VolumeMapper); if(function == 0){ volumemapper->SetVolumeRayCastFunction(_compositeFunction); }else{ volumemapper->SetVolumeRayCastFunction(_MIPFunction); } }else if(dynamic_cast(VolumeMapper)){ vtkGPUVolumeRayCastMapper* volumemapper = dynamic_cast(VolumeMapper); if(function == 0){ volumemapper->SetBlendModeToComposite(); }else if(function == 1){ volumemapper->SetBlendModeToMaximumIntensity(); }else if(function == 2){ volumemapper->SetBlendModeToMinimumIntensity(); } } #endif #else vtkGPUVolumeRayCastMapper* volumemapper = dynamic_cast(VolumeMapper); if(function == 0){ volumemapper->SetBlendModeToComposite(); }else if(function == 1){ volumemapper->SetBlendModeToMaximumIntensity(); }else if(function == 2){ volumemapper->SetBlendModeToMinimumIntensity(); } #endif } } void VolumeRendererManagerData::SetLookupTable(vtkLookupTable* lookuptable){ if(lookuptable){ _ctfun->RemoveAllPoints(); vtkColorTransferFunction* colort = (vtkColorTransferFunction*)lookuptable; for(int i = 0; i < colort->GetSize(); i++){ double val[6]; colort->GetNodeValue(i, val); cout<< "JPRG::VolumeRendererManagerData::SetLookupTable::"<AddRGBPoint(val[0], val[1], val[2], val[3]); } _newvol->Update(); } } void VolumeRendererManagerData::changeInterpolationType(int type){ //checkInvariant(); if(type == 0){ _volumeProperty->SetInterpolationTypeToLinear(); }else if(type == 1){ _volumeProperty->SetInterpolationTypeToNearest(); } } void VolumeRendererManagerData::SetColorTransferFunction(int i, vtkColorTransferFunction* colorf){ _volumeProperty->SetColor(i, colorf); }