Shark machine learning library
Installation
Tutorials
Benchmarks
Documentation
Quick references
Class list
Global functions
include
shark
Core
Images
Padding.h
Go to the documentation of this file.
1
#ifndef SHARK_CORE_IMAGE_PADDING_H
2
#define SHARK_CORE_IMAGE_PADDING_H
3
4
#include <
shark/LinAlg/Base.h
>
5
namespace
shark
{
6
enum class
Padding
{
7
Valid
,
8
ZeroPad
,
9
RepeatBorder
10
};
11
12
}
13
14
#endif