OpenPose  1.0.0rc2
OpenPose: A Real-Time Multi-Person Key-Point Detection And Multi-Threading C++ Library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
maximumBase.hpp
Go to the documentation of this file.
1 #ifndef OPENPOSE_NET_MAXIMUM_BASE_HPP
2 #define OPENPOSE_NET_MAXIMUM_BASE_HPP
3 
5 
6 namespace op
7 {
8  template <typename T>
9  OP_API void maximumCpu(T* targetPtr, const T* const sourcePtr, const std::array<int, 4>& targetSize,
10  const std::array<int, 4>& sourceSize);
11 
12  template <typename T>
13  OP_API void maximumGpu(T* targetPtr, const T* const sourcePtr, const std::array<int, 4>& targetSize,
14  const std::array<int, 4>& sourceSize);
15 }
16 
17 #endif // OPENPOSE_NET_MAXIMUM_BASE_HPP
OP_API void maximumGpu(T *targetPtr, const T *const sourcePtr, const std::array< int, 4 > &targetSize, const std::array< int, 4 > &sourceSize)
#define OP_API
Definition: macros.hpp:15
OP_API void maximumCpu(T *targetPtr, const T *const sourcePtr, const std::array< int, 4 > &targetSize, const std::array< int, 4 > &sourceSize)