Skip to content

Commit

Permalink
Create README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
gitalm authored Jan 21, 2019
1 parent 331288c commit 27ae2ca
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# EarlyFlowers
using ml5.js and p5.js to detect flowers by webcam

# Preparation of the images
to scale the images into 244x244 i use two bash scripts inside the folder

## Scale the images and crop around center
for i in *.*; do mogrify -resize "244^>" -gravity center -crop 244x244+0+0 $i; done

## Rename images
ls | cat -n | while read n f; do mv "$f" "$n.jpg"; done

## JSON-Generation
python python_json img/ > json_ml5data.json

0 comments on commit 27ae2ca

Please sign in to comment.