Work on gradient estimators. Added CENTRAL_DIFFERENCE_SMOOTHED and SOBEL_SMOOTHED.
This commit is contained in:
@ -26,9 +26,11 @@ namespace PolyVox
|
||||
{
|
||||
enum NormalGenerationMethod
|
||||
{
|
||||
SIMPLE,
|
||||
SIMPLE, //Fastest
|
||||
CENTRAL_DIFFERENCE,
|
||||
SOBEL
|
||||
SOBEL,
|
||||
CENTRAL_DIFFERENCE_SMOOTHED,
|
||||
SOBEL_SMOOTHED //Smoothest
|
||||
};
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user