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:
@@ -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");
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user