提交 9b8b699e 编写于 作者: M mindspore-ci-bot 提交者: Gitee

!1235 Auto remove CRLF of VOCDataset txt file

Merge pull request !1235 from xiefangqi/xfq_del_CRLF
......@@ -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();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册