Open giangnguyen2412 opened 5 years ago
The error message is printed by function eval
in evaluate_object_3d_offline.cpp
, line 835-843:
bool eval(string gt_dir, string result_dir, Mail* mail){
...
...
// read ground truth and result poses
bool gt_success,det_success;
vector<tGroundtruth> gt = loadGroundtruth(gt_dir + "/" + file_name,gt_success);
vector<tDetection> det = loadDetections(result_dir + "/data/" + file_name,
compute_aos, eval_image, eval_ground, eval_3d, det_success);
groundtruth.push_back(gt);
detections.push_back(det);
// check for errors
if (!gt_success) {
mail->msg("ERROR: Couldn't read: %s of ground truth. Please write me an email!", file_name);
return false;
}
if (!det_success) {
mail->msg("ERROR: Couldn't read: %s", file_name);
return false;
}
...
...
I guess it couldn't read 005449.txt
file in gt_dir
directory. Can you check if that file is really in gt_dir
?
Training is ok but when I run evaluation by this command:
This error log exposed: