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
keepTopNPeople.hpp
Go to the documentation of this file.
1 #ifndef OPENPOSE_CORE_KEEP_TOP_N_PEOPLE_HPP
2 #define OPENPOSE_CORE_KEEP_TOP_N_PEOPLE_HPP
3 
5 
6 namespace op
7 {
9  {
10  public:
11  explicit KeepTopNPeople(const int numberPeopleMax);
12 
13  Array<float> keepTopPeople(const Array<float>& peopleArrays, const Array<float>& poseScores) const;
14 
15  private:
16  const int mNumberPeopleMax;
17  };
18 }
19 
20 #endif // OPENPOSE_CORE_KEEP_TOP_N_PEOPLE_HPP
#define OP_API
Definition: macros.hpp:15
Definition: keepTopNPeople.hpp:8