mirror of
https://github.com/opencv/opencv_contrib.git
synced 2025-10-20 21:40:49 +08:00
Fixed warnings
This commit is contained in:
@@ -115,7 +115,7 @@ int main(int argc, char** argv)
|
||||
Mat detectionMat(detection.rows(), detection.cols(), CV_32F, detection.ptrf());
|
||||
|
||||
float confidenceThreshold = parser.get<float>("min_confidence");
|
||||
for(size_t i = 0; i < detectionMat.rows; i++)
|
||||
for(int i = 0; i < detectionMat.rows; i++)
|
||||
{
|
||||
float confidence = detectionMat.at<float>(i, 2);
|
||||
|
||||
|
Reference in New Issue
Block a user