!1235 Auto remove CRLF of VOCDataset txt file

Merge pull request !1235 from xiefangqi/xfq_del_CRLF
This commit is contained in:
mindspore-ci-bot 2020-05-18 23:09:48 +08:00 committed by Gitee
commit 9b8b699eb3
1 changed files with 5 additions and 1 deletions

View File

@ -270,7 +270,11 @@ Status VOCOp::ParseImageIds() {
}
std::string id;
while (getline(in_file, id)) {
image_ids_.push_back(id);
if (id[id.size() - 1] == '\r') {
image_ids_.push_back(id.substr(0, id.size() - 1));
} else {
image_ids_.push_back(id);
}
}
in_file.close();
image_ids_.shrink_to_fit();