#include "Core/Array/Pattern/BorderType.h"
#include "Core/Array/Pattern/FuncBorderOp.h"
Include dependency graph for PatSetBorder.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Namespaces | |
namespace | Impala |
namespace | Impala::Core |
namespace | Impala::Core::Array |
namespace | Impala::Core::Array::Pattern |
Functions | |
template<class ArrayT> | |
void | Impala::Core::Array::Pattern::PatSetBorder (ArrayT *a, int numX, int numY, BorderType borderType=BORDERMIRROR) |
If these are the last three pixels on the right of the image: 1 2 3 BORDERMIRROR with a border size of three results in: 1 2 3 | 3 2 1 BORDERPROPAGATE results in: 1 2 3 | 3 3 3. | |
template<class ArrayT, class ValT> | |
void | Impala::Core::Array::Pattern::PatSetBorder (ArrayT *a, int numX, int numY, BorderType borderType, ValT borderValue, ValT leftBorderNorm, ValT rightBorderNorm, ValT topBorderNorm, ValT bottomBorderNorm) |