| 112 | float mScore; |
| 113 | bool mIsGood; |
| 114 | CandidateObject() |
| 115 | { |
| 116 | std::fill_n(mBboxAndkeyPoints, 14, FLT_MAX); |
| 117 | mScore = FLT_MAX; |
| 118 | mIsGood = true; |
| 119 | } |
| 120 | CandidateObject(float* bboxAndkeyPoints, float score, bool isGood) : |
| 121 | mScore(score), |
| 122 | mIsGood(isGood) |
nothing calls this directly
no outgoing calls
no test coverage detected