BilateralSamplingMethod

Description

Determines which sampling method will be used in the calculations.

Values of this enumeration:

  • Naive - All pixels are sampled.
  • Poisson - A Poisson subsampling method is used to pick sampled pixels.

namespace BilateralSamplingMethod
{
	enum Type
	{
		Naive,
		Poisson
	};
}