Giter Club home page Giter Club logo

Comments (7)

Mackillst avatar Mackillst commented on September 17, 2024

replace it with "set", thus the following command: "SET PYTHONPATH=%PYTHONPATH%;%cd%;%cd%\slim"

from raccoon_dataset.

NguyenTam1997 avatar NguyenTam1997 commented on September 17, 2024

Thank you! Then, I run: python setup.py install with command admin and error: "python: can't open file 'setup.py': [Errno 2] No such file or directory."
I know this question's been asked a lot before, so I've tried everything in previous answers.
I am able to generate the csv files but there is nothing in it except this line:
filename,width,height,class,xmin,ymin,xmax,ymax.

from raccoon_dataset.

Mackillst avatar Mackillst commented on September 17, 2024

Frankly, I am not an expert in python, however, send me a picture of the error. But as I've said I am not too good at python; I just use it for API detection. Just capture your screen via Snipping Tool, then send it to figure it out.

from raccoon_dataset.

NguyenTam1997 avatar NguyenTam1997 commented on September 17, 2024

I did it :)))
Thank you so much!!!

from raccoon_dataset.

Mackillst avatar Mackillst commented on September 17, 2024

Hi,

I've read your issue, thus I will be illustrating the solution of the missing information. I believe you have mistype the path.

this is code
import os
import glob
import pandas as pd
import xml.etree.ElementTree as ET

def xml_to_csv(path):
xml_list = []
for xml_file in glob.glob(path + '/*.xml'):
tree = ET.parse(xml_file)
root = tree.getroot()
for member in root.findall('object'):
value = (root.find('filename').text,
int(root.find('size')[0].text),
int(root.find('size')[1].text),
member[0].text,
int(member[4][0].text),
int(member[4][1].text),
int(member[4][2].text),
int(member[4][3].text)
)
xml_list.append(value)
column_name = ['filename', 'width', 'height', 'class', 'xmin', 'ymin', 'xmax', 'ymax']
xml_df = pd.DataFrame(xml_list, columns=column_name)
return xml_df

def main():
for dir in ['Test','Train']:
image_path = os.path.join(os.getcwd(), 'images'.format(dir))
xml_df = xml_to_csv(image_path)
xml_df.to_csv('{}Lab.csv'.format(dir), index=None)
print('Successfully converted xml to csv.')

main()

Now, your job is the following:

create " Test" and "Train" folders, which contain the images. Keep in mind "Test" should have 20% of your total images and rest in the "Train" . Pay attention of the name of folders, which have capital characters in the beginning of words. Lastly, make sure that both of folders are in the same path of your executable code. Such as in my pic
code

from raccoon_dataset.

NguyenTam1997 avatar NguyenTam1997 commented on September 17, 2024

Thank you very much!
I finished it! No problem.

from raccoon_dataset.

Doan-Nguyen avatar Doan-Nguyen commented on September 17, 2024

Thank you very much!
I finished it! No problem.

Excuseme, i have a same problem. Can you show me your way to fix problem ?

from raccoon_dataset.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.