<object> -> <bndbox> -> 4개의 coord가져오기
(데이터는 사진과 다릅니다)
import xml.etree.ElementTree as elemTree
tree = elemTree.parse(annotation_list[0])
object_a = tree.find('object')
print(object_a.find('bndbox')[0], object_a.find('bndbox')[0].text)
print(object_a.find('bndbox')[1], object_a.find('bndbox')[1].text)
print(object_a.find('bndbox')[2], object_a.find('bndbox')[2].text)
print(object_a.find('bndbox')[3], object_a.find('bndbox')[3].text)
'# 기타 공부한 것들 > 파이썬_etc.' 카테고리의 다른 글
데이터 분석 시 쓰이는 plot(코드x, plot별 메소드 이름) (0) | 2019.07.23 |
---|---|
Dataframe memory 줄이기(IEEE-CIS Fraud Detection) (0) | 2019.07.21 |
파이썬 asterisk(*) 사용 용도 (0) | 2019.06.18 |
파이썬을 이용한 네이버 크롤링 + 자바스크립트형 (0) | 2019.06.15 |
Tensorflow object detection api 학습전까지 과정 (0) | 2019.05.31 |