| namespace op | |
| { | |
| class OP_API KeepTopNPeople | |
| { | |
| public: | |
| explicit KeepTopNPeople(const int numberPeopleMax); | |
| virtual ~KeepTopNPeople(); | |
| Array<float> keepTopPeople(const Array<float>& peopleArrays, const Array<float>& poseScores) const; | |
| private: | |
| const int mNumberPeopleMax; | |
| }; | |
| } | |