Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavz committed Jan 22, 2018
1 parent 684b7dd commit 0e6565f
Showing 1 changed file with 32 additions and 17 deletions.
49 changes: 32 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,38 @@
# deeptraining_hands

Each of the provided scripts converts one boundingbox annotation format into another.
Each of the provided scripts converts files of a certain boundingbox annotation format into another.
Run one or several scripts to get to your desired training format.

to get from .mat annotations to a tensorflow runnable .record file run:
mat_to_xml.py
xml_to_csv.py
csv_img_to_tfrecord.py
Example:to get from `.mat` annotations to a tensorflow runnable `.record` file run:
```
mat_to_xml.py
xml_to_csv.py
csv_img_to_tfrecord.py
```

All scripts create/support following folder structure:
.
├── data
│ └── train
| ├── annotations
| ├── mat
| ├── xml
| └── txt
| ├── images
│ ├── eval
| ├── ...
└── model
```
.
├── data
| ├── train_labels.csv
| ├── eval_labels.csv
| ├── label_map.pbtxt
│ └── train
| ├── annotations
| ├── mat
| ├──file1.mat
| └── ...
| ├── xml
| ├──file1.xml
| └── ...
| └── txt
| ├──file1.txt
| └── ...
| └── images
| ├──file1.jpg
| └── ...
│ ├── eval
| └── ...
└── model
```

0 comments on commit 0e6565f

Please sign in to comment.