1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-19 02:16:34 +08:00

Refactored API classes, removed unused params

This commit is contained in:
Bence Magyar
2014-09-02 13:24:36 +02:00
parent 995b696360
commit 3f620fd19f
7 changed files with 127 additions and 136 deletions

View File

@@ -133,12 +133,12 @@ int main(int argc, char** argv)
// debug first five poses
for (size_t i=0; i<resultsSub.size(); i++)
{
Pose3D* pose = resultsSub[i];
Pose3D* result = resultsSub[i];
cout << "Pose Result " << i << endl;
pose->printPose();
result->printPose();
if (i==0)
{
Mat pct = transformPCPose(pc, pose->Pose);
Mat pct = transformPCPose(pc, result->pose);
writePLY(pct, "para6700PCTrans.ply");
}
}