#ifndef OPENPOSE_CORE_KEEP_TOP_N_PEOPLE_HPP #define OPENPOSE_CORE_KEEP_TOP_N_PEOPLE_HPP #include namespace op { class OP_API KeepTopNPeople { public: explicit KeepTopNPeople(const int numberPeopleMax); virtual ~KeepTopNPeople(); Array keepTopPeople(const Array& peopleArrays, const Array& poseScores) const; private: const int mNumberPeopleMax; }; } #endif // OPENPOSE_CORE_KEEP_TOP_N_PEOPLE_HPP