Home
last modified time | relevance | path

Searched refs:bbox_node (Results 1 – 3 of 3) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/datasetops/source/
Dvoc_op.cc177 void VOCOp::ParseNodeValue(XMLElement *bbox_node, const char *name, float *value) { in ParseNodeValue() argument
179 if (bbox_node != nullptr) { in ParseNodeValue()
180 XMLElement *node = bbox_node->FirstChildElement(name); in ParseNodeValue()
224 XMLElement *bbox_node = object->FirstChildElement("bndbox"); in ParseAnnotationBbox() local
225 if (bbox_node != nullptr) { in ParseAnnotationBbox()
226 ParseNodeValue(bbox_node, "xmin", &xmin); in ParseAnnotationBbox()
227 ParseNodeValue(bbox_node, "xmax", &xmax); in ParseAnnotationBbox()
228 ParseNodeValue(bbox_node, "ymin", &ymin); in ParseAnnotationBbox()
229 ParseNodeValue(bbox_node, "ymax", &ymax); in ParseAnnotationBbox()
Dvoc_op.h131 void ParseNodeValue(XMLElement *bbox_node, const char *name, float *value);
/third_party/mindspore/tests/ut/cpp/dataset/common/
Dbboxop_common.cc207 XMLElement *bbox_node = object->FirstChildElement("bndbox"); in LoadAnnotationFile() local
208 if (bbox_node != nullptr) { in LoadAnnotationFile()
209 XMLElement *xmin_node = bbox_node->FirstChildElement("xmin"); in LoadAnnotationFile()
211 XMLElement *ymin_node = bbox_node->FirstChildElement("ymin"); in LoadAnnotationFile()
213 XMLElement *xmax_node = bbox_node->FirstChildElement("xmax"); in LoadAnnotationFile()
215 XMLElement *ymax_node = bbox_node->FirstChildElement("ymax"); in LoadAnnotationFile()