An open API service indexing awesome lists of open source software.

https://github.com/lionleaf/mastertools


https://github.com/lionleaf/mastertools

Last synced: over 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Mastertools

Collection of useful python scripts.

## Evaluate detections

Creates two output files `good_list` and `bad_list`,
where `good_list` contains images where more than one box was predicted correctly.
`bad_list` contains images where no boxes were correctly predicted.

```
python evaluate_detections.py recall
```

or

```
python evaluate_detections.py valid
```

## Image View

Open one image to inspect its labels:
```
python imageview.py data/images/image.jpg
```

Open a folder to browse all its images:
```
python imageview.py data/images/
```

Open a list of images from a txt-file:
```
python imageview.py good_list.txt
```

### Browse good/bad detections:
This is easier than using `evaluate_detections` directly.

```
python imageview.py good
python imageview.py bad
```

Example:
```
python imageview.py good exp_wide_graybg_manymodel kitti
```