58 lines
2.0 KiB
C
58 lines
2.0 KiB
C
|
|
/*=========================================================================
|
||
|
|
|
||
|
|
Program: Visualization Toolkit
|
||
|
|
Module: vtkFixedPointVolumeRayCastMIPHelper.h
|
||
|
|
|
||
|
|
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.
|
||
|
|
|
||
|
|
=========================================================================*/
|
||
|
|
/**
|
||
|
|
* @class vtkFixedPointVolumeRayCastMIPHelper
|
||
|
|
* @brief A helper that generates MIP images for the volume ray cast mapper
|
||
|
|
*
|
||
|
|
* This is one of the helper classes for the vtkFixedPointVolumeRayCastMapper.
|
||
|
|
* It will generate maximum intensity images.
|
||
|
|
* This class should not be used directly, it is a helper class for
|
||
|
|
* the mapper and has no user-level API.
|
||
|
|
*
|
||
|
|
* @sa
|
||
|
|
* vtkFixedPointVolumeRayCastMapper
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef vtkFixedPointVolumeRayCastMIPHelper_h
|
||
|
|
#define vtkFixedPointVolumeRayCastMIPHelper_h
|
||
|
|
|
||
|
|
#include "vtkFixedPointVolumeRayCastHelper.h"
|
||
|
|
#include "vtkRenderingVolumeModule.h" // For export macro
|
||
|
|
|
||
|
|
class vtkFixedPointVolumeRayCastMapper;
|
||
|
|
class vtkVolume;
|
||
|
|
|
||
|
|
class VTKRENDERINGVOLUME_EXPORT vtkFixedPointVolumeRayCastMIPHelper
|
||
|
|
: public vtkFixedPointVolumeRayCastHelper
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
static vtkFixedPointVolumeRayCastMIPHelper* New();
|
||
|
|
vtkTypeMacro(vtkFixedPointVolumeRayCastMIPHelper, vtkFixedPointVolumeRayCastHelper);
|
||
|
|
void PrintSelf(ostream& os, vtkIndent indent) override;
|
||
|
|
|
||
|
|
void GenerateImage(int threadID, int threadCount, vtkVolume* vol,
|
||
|
|
vtkFixedPointVolumeRayCastMapper* mapper) override;
|
||
|
|
|
||
|
|
protected:
|
||
|
|
vtkFixedPointVolumeRayCastMIPHelper();
|
||
|
|
~vtkFixedPointVolumeRayCastMIPHelper() override;
|
||
|
|
|
||
|
|
private:
|
||
|
|
vtkFixedPointVolumeRayCastMIPHelper(const vtkFixedPointVolumeRayCastMIPHelper&) = delete;
|
||
|
|
void operator=(const vtkFixedPointVolumeRayCastMIPHelper&) = delete;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|