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

https://github.com/dataplayer12/hey-daug

A light weight data augmentation tool for training CNNs and Viola Jones detectors
https://github.com/dataplayer12/hey-daug

computer-vision convolutional-neural-networks data-augmentation haar-cascade viola-jones

Last synced: 11 months ago
JSON representation

A light weight data augmentation tool for training CNNs and Viola Jones detectors

Awesome Lists containing this project

README

          

# hey-daug
A light weight data augmentation tool for training CNNs and Viola Jones detectors (Haar Cascades). This tool inflates your data by up to six times. Use with care.

Steps for use:

1. Set the parameters for images in constants.py

2. Use data augmentation in your code:

```python
import data_utils as daug
folders=[folder1, folder2] #list of folder paths where training images are saved, ex. ['./pos' , './neg']
daug.augment_and_save(folders)
```

If you would like to remove augmented images and keep originals, use:
```python
du.remove_augmented_data(folders)
```