Navigation
API > API/Runtime > API/Runtime/GeometryCore > API/Runtime/GeometryCore/TMarchingPixelInfill
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void ApplyInfill
(
TImageBuilder< OtherPixelType >& Image, |
Fill the missing values in Image by replaying the infill sequence computed by ComputeInfill() | Image/ImageInfilling.h | |
void ApplyInfill
(
TImageBuilder< PixelType >& Image, |
Fill the missing values in Image by replaying the infill sequence computed by ComputeInfill() | Image/ImageInfilling.h |
ApplyInfill(TImageBuilder< OtherPixelType > &, TFunctionRef< OtherPixelType(OtherPixelType SumOfNbrValues, int NbrCount)>)
Description
Fill the missing values in Image by replaying the infill sequence computed by ComputeInfill()
| Name | ApplyInfill |
| Type | function |
| Header File | /Engine/Source/Runtime/GeometryCore/Public/Image/ImageInfilling.h |
| Include Path | #include "Image/ImageInfilling.h" |
template<typename OtherPixelType>
void ApplyInfill
(
TImageBuilder < OtherPixelType > & Image,
TFunctionRef < OtherPixelType> NormalizeFunc
) const
Parameters
| Name | Remarks |
|---|---|
| NormalizeFunc | Implements an "average" operation for the template OtherPixelType, normally (SumOfNbrValues / NbrCount) |
ApplyInfill(TImageBuilder< PixelType > &, TFunctionRef< PixelType(PixelType SumOfNbrValues, int NbrCount)>)
Description
Fill the missing values in Image by replaying the infill sequence computed by ComputeInfill()
| Name | ApplyInfill |
| Type | function |
| Header File | /Engine/Source/Runtime/GeometryCore/Public/Image/ImageInfilling.h |
| Include Path | #include "Image/ImageInfilling.h" |
void ApplyInfill
(
TImageBuilder < PixelType > & Image,
TFunctionRef < PixelType> NormalizeFunc
) const
Parameters
| Name | Remarks |
|---|---|
| NormalizeFunc | Implements an "average" operation for the template PixelType, normally (SumOfNbrValues / NbrCount) |