├── .idea ├── enteroscope.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── LICENSE ├── README.md ├── VOC2007 ├── Annotations │ ├── 3568809_082932109.xml │ └── 3568809_083024531.xml ├── ImageSets │ └── Main │ │ ├── test.txt │ │ └── trainval.txt └── JPEGImages │ ├── 3568809_082932109.jpg │ └── 3568809_083024531.jpg ├── cpsourceImage2voc.py ├── create_ImageSets.py ├── generateoutput_txt.py ├── labelmeXml2txt.py ├── makeMaintext.py ├── odxmlgeneratenxml.sh ├── optxt2voc2007xml.py ├── output.txt ├── source ├── transfertxtfiles │ ├── 3568809_082932109.txt │ └── 3568809_083024531.txt └── xmlfiles │ ├── 3568809_082932109.xml │ └── 3568809_083024531.xml └── xml2txt.py /.idea/enteroscope.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LBAWMY/labelme2VOC2007mat/HEAD/.idea/enteroscope.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LBAWMY/labelme2VOC2007mat/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LBAWMY/labelme2VOC2007mat/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LBAWMY/labelme2VOC2007mat/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LBAWMY/labelme2VOC2007mat/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LBAWMY/labelme2VOC2007mat/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LBAWMY/labelme2VOC2007mat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LBAWMY/labelme2VOC2007mat/HEAD/README.md -------------------------------------------------------------------------------- /VOC2007/Annotations/3568809_082932109.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LBAWMY/labelme2VOC2007mat/HEAD/VOC2007/Annotations/3568809_082932109.xml -------------------------------------------------------------------------------- /VOC2007/Annotations/3568809_083024531.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LBAWMY/labelme2VOC2007mat/HEAD/VOC2007/Annotations/3568809_083024531.xml -------------------------------------------------------------------------------- /VOC2007/ImageSets/Main/test.txt: -------------------------------------------------------------------------------- 1 | 3568809_083024531 2 | -------------------------------------------------------------------------------- /VOC2007/ImageSets/Main/trainval.txt: -------------------------------------------------------------------------------- 1 | 3568809_082932109 2 | -------------------------------------------------------------------------------- /VOC2007/JPEGImages/3568809_082932109.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LBAWMY/labelme2VOC2007mat/HEAD/VOC2007/JPEGImages/3568809_082932109.jpg -------------------------------------------------------------------------------- /VOC2007/JPEGImages/3568809_083024531.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LBAWMY/labelme2VOC2007mat/HEAD/VOC2007/JPEGImages/3568809_083024531.jpg -------------------------------------------------------------------------------- /cpsourceImage2voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LBAWMY/labelme2VOC2007mat/HEAD/cpsourceImage2voc.py -------------------------------------------------------------------------------- /create_ImageSets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LBAWMY/labelme2VOC2007mat/HEAD/create_ImageSets.py -------------------------------------------------------------------------------- /generateoutput_txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LBAWMY/labelme2VOC2007mat/HEAD/generateoutput_txt.py -------------------------------------------------------------------------------- /labelmeXml2txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LBAWMY/labelme2VOC2007mat/HEAD/labelmeXml2txt.py -------------------------------------------------------------------------------- /makeMaintext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LBAWMY/labelme2VOC2007mat/HEAD/makeMaintext.py -------------------------------------------------------------------------------- /odxmlgeneratenxml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LBAWMY/labelme2VOC2007mat/HEAD/odxmlgeneratenxml.sh -------------------------------------------------------------------------------- /optxt2voc2007xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LBAWMY/labelme2VOC2007mat/HEAD/optxt2voc2007xml.py -------------------------------------------------------------------------------- /output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LBAWMY/labelme2VOC2007mat/HEAD/output.txt -------------------------------------------------------------------------------- /source/transfertxtfiles/3568809_082932109.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LBAWMY/labelme2VOC2007mat/HEAD/source/transfertxtfiles/3568809_082932109.txt -------------------------------------------------------------------------------- /source/transfertxtfiles/3568809_083024531.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LBAWMY/labelme2VOC2007mat/HEAD/source/transfertxtfiles/3568809_083024531.txt -------------------------------------------------------------------------------- /source/xmlfiles/3568809_082932109.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LBAWMY/labelme2VOC2007mat/HEAD/source/xmlfiles/3568809_082932109.xml -------------------------------------------------------------------------------- /source/xmlfiles/3568809_083024531.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LBAWMY/labelme2VOC2007mat/HEAD/source/xmlfiles/3568809_083024531.xml -------------------------------------------------------------------------------- /xml2txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LBAWMY/labelme2VOC2007mat/HEAD/xml2txt.py --------------------------------------------------------------------------------