1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-20 04:25:42 +08:00

Merge branch 4.x

This commit is contained in:
Alexander Alekhin
2022-08-21 14:34:44 +00:00
111 changed files with 5183 additions and 3799 deletions

View File

@@ -273,7 +273,6 @@ int PoseCluster3D::readPoseCluster(FILE* f)
status = fread(&id, sizeof(int), 1, f);
status = fread(&numVotes, sizeof(int), 1, f);
status = fread(&numPoses, sizeof(int), 1, f);
fclose(f);
poseList.clear();
poseList.resize(numPoses);
@@ -283,6 +282,7 @@ int PoseCluster3D::readPoseCluster(FILE* f)
poseList[i]->readPose(f);
}
fclose(f);
return 0;
}