mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-02 01:20:25 +08:00
fixed name of the saved ground truth file from the console application, updated "samples" ground truth file
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 7.9 KiB |
@@ -540,9 +540,9 @@ int main(int argc, char * argv[])
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Generate the ground truth file
|
// Generate the ground truth file
|
||||||
printf("Generate ground truth to file %s, size of %d\n", (rtabmap.getWorkingDir()+GENERATED_GT_NAME).c_str(), groundTruthMat.rows);
|
printf("Generate ground truth to file %s, size of %d\n", GENERATED_GT_NAME, groundTruthMat.rows);
|
||||||
IplImage img = groundTruthMat;
|
IplImage img = groundTruthMat;
|
||||||
cvSaveImage((rtabmap.getWorkingDir()+GENERATED_GT_NAME).c_str(), &img);
|
cvSaveImage(GENERATED_GT_NAME, &img);
|
||||||
printf(" Creating ground truth file = %fs\n", timer.ticks());
|
printf(" Creating ground truth file = %fs\n", timer.ticks());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user