HDK
|
Volume filtering (e.g., diffusion) with optional alpha masking. More...
#include <Filter.h>
Public Types | |
using | GridType = GridT |
using | MaskType = MaskT |
using | TreeType = typename GridType::TreeType |
using | LeafType = typename TreeType::LeafNodeType |
using | ValueType = typename GridType::ValueType |
using | AlphaType = typename MaskType::ValueType |
using | LeafManagerType = typename tree::LeafManager< TreeType > |
using | RangeType = typename LeafManagerType::LeafRange |
using | BufferType = typename LeafManagerType::BufferType |
Public Member Functions | |
Filter (GridT &grid, InterruptT *interrupt=nullptr) | |
Filter (const Filter &other) | |
Shallow copy constructor called by tbb::parallel_for() threads during filtering. More... | |
int | getGrainSize () const |
void | setGrainSize (int grainsize) |
Set the grain-size used for multi-threading. More... | |
bool | getProcessTiles () const |
void | setProcessTiles (bool flag) |
Set whether active tiles should also be processed. More... | |
AlphaType | minMask () const |
Return the minimum value of the mask to be used for the derivation of a smooth alpha value. More... | |
AlphaType | maxMask () const |
Return the maximum value of the mask to be used for the derivation of a smooth alpha value. More... | |
void | setMaskRange (AlphaType min, AlphaType max) |
Define the range for the (optional) scalar mask. More... | |
bool | isMaskInverted () const |
Return true if the mask is inverted, i.e. min->max in the original mask maps to 1->0 in the inverted alpha mask. More... | |
void | invertMask (bool invert=true) |
Invert the optional mask, i.e. min->max in the original mask maps to 1->0 in the inverted alpha mask. More... | |
void | mean (int width=1, int iterations=1, const MaskType *mask=nullptr) |
One iteration of a fast separable mean-value (i.e. box) filter. More... | |
void | gaussian (int width=1, int iterations=1, const MaskType *mask=nullptr) |
One iteration of a fast separable Gaussian filter. More... | |
void | median (int width=1, int iterations=1, const MaskType *mask=nullptr) |
One iteration of a median-value filter. More... | |
void | offset (ValueType offset, const MaskType *mask=nullptr) |
void | operator() (const RangeType &range) const |
Used internally by tbb::parallel_for() More... | |
Volume filtering (e.g., diffusion) with optional alpha masking.
using openvdb::OPENVDB_VERSION_NAME::tools::Filter< GridT, MaskT, InterruptT >::AlphaType = typename MaskType::ValueType |
using openvdb::OPENVDB_VERSION_NAME::tools::Filter< GridT, MaskT, InterruptT >::BufferType = typename LeafManagerType::BufferType |
using openvdb::OPENVDB_VERSION_NAME::tools::Filter< GridT, MaskT, InterruptT >::GridType = GridT |
using openvdb::OPENVDB_VERSION_NAME::tools::Filter< GridT, MaskT, InterruptT >::LeafManagerType = typename tree::LeafManager<TreeType> |
using openvdb::OPENVDB_VERSION_NAME::tools::Filter< GridT, MaskT, InterruptT >::LeafType = typename TreeType::LeafNodeType |
using openvdb::OPENVDB_VERSION_NAME::tools::Filter< GridT, MaskT, InterruptT >::MaskType = MaskT |
using openvdb::OPENVDB_VERSION_NAME::tools::Filter< GridT, MaskT, InterruptT >::RangeType = typename LeafManagerType::LeafRange |
using openvdb::OPENVDB_VERSION_NAME::tools::Filter< GridT, MaskT, InterruptT >::TreeType = typename GridType::TreeType |
using openvdb::OPENVDB_VERSION_NAME::tools::Filter< GridT, MaskT, InterruptT >::ValueType = typename GridType::ValueType |
|
inline |
|
inline |
void openvdb::OPENVDB_VERSION_NAME::tools::Filter< GridT, MaskT, InterruptT >::gaussian | ( | int | width = 1 , |
int | iterations = 1 , |
||
const MaskType * | mask = nullptr |
||
) |
One iteration of a fast separable Gaussian filter.
width | The width of the mean-value filter is 2*width+1 voxels. |
iterations | Number of times the mean-value filter is applied. |
mask | Optional alpha mask. |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
void openvdb::OPENVDB_VERSION_NAME::tools::Filter< GridT, MaskT, InterruptT >::mean | ( | int | width = 1 , |
int | iterations = 1 , |
||
const MaskType * | mask = nullptr |
||
) |
void openvdb::OPENVDB_VERSION_NAME::tools::Filter< GridT, MaskT, InterruptT >::median | ( | int | width = 1 , |
int | iterations = 1 , |
||
const MaskType * | mask = nullptr |
||
) |
One iteration of a median-value filter.
width | The width of the mean-value filter is 2*width+1 voxels. |
iterations | Number of times the mean-value filter is applied. |
mask | Optional alpha mask. |
|
inline |
void openvdb::OPENVDB_VERSION_NAME::tools::Filter< GridT, MaskT, InterruptT >::offset | ( | ValueType | offset, |
const MaskType * | mask = nullptr |
||
) |
|
inline |
|
inline |
|
inline |
Define the range for the (optional) scalar mask.
min | Minimum value of the range. |
max | Maximum value of the range. |
Mask values outside the range are clamped to zero or one, and values inside the range map smoothly to 0->1 (unless the mask is inverted).
ValueError | if min is not smaller than max. |
|
inline |
Set whether active tiles should also be processed.