OpenPose  1.7.0
The first real-time multi-person system to jointly detect human body, hand, facial, and foot keypoints
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  void maximumCpu(T* targetPtr, const T* const sourcePtr, const std::array<int, 4>& targetSize,
10  const std::array<int, 4>& sourceSize);
11 
12  // Windows: Cuda functions do not include OP_API
13  template <typename T>
14  void maximumGpu(T* targetPtr, const T* const sourcePtr, const std::array<int, 4>& targetSize,
15  const std::array<int, 4>& sourceSize);
16 }
17 
18 #endif // OPENPOSE_NET_MAXIMUM_BASE_HPP
void maximumGpu(T *targetPtr, const T *const sourcePtr, const std::array< int, 4 > &targetSize, const std::array< int, 4 > &sourceSize)
void maximumCpu(T *targetPtr, const T *const sourcePtr, const std::array< int, 4 > &targetSize, const std::array< int, 4 > &sourceSize)