Skip to content

Commit

Permalink
Organized folders, Revised ReadME file
Browse files Browse the repository at this point in the history
Signed-off-by: PSY222 <ss26348@naver.com>
  • Loading branch information
PSY222 committed Apr 20, 2023
1 parent 89b16ca commit dcbe5c9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
18 changes: 11 additions & 7 deletions Snapchat_Filters/MinionEyes Filter/README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
### Make a Simple and Fun Minions Filter with OpenCV
## Make Fun Minions Filter with OpenCV 😊

+ Real time Minions eye filter using simple OpenCV codes
+ Real time Minions eye filter using simple OpenCV libraries
+ Used CascadeClassifier instead of Dlib for efficient real-time application

image.png
<p style="margin-top: 40px; margin-bottom: 40px;">
<img src="img/output.JPG" alt="output" width="400" height="300">
</p>

### Getting started
## 👇 Getting started 👇
1. Clone this repository and navigate to this folder
2. run face_filter.py file
'''

```
python face_filter.py
'''
```

3. Enjoy cute and fun Minions filter!😍

(If you want to develop this filter further, feel free to make advanced filter that minion eyes can follow your gaze)
(If you want to develop this filter further, feel free to make advanced filter that minion eyes follow your gaze)

2 changes: 1 addition & 1 deletion Snapchat_Filters/MinionEyes Filter/face_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import os

current_dir = os.path.dirname(__file__)
image_path = os.path.join(current_dir, 'minion_eyes.png')
image_path = os.path.join(current_dir, 'img/minion_eyes.png')
cascPath = os.path.join(current_dir, 'frontalEyes.xml') # for eye detection

if os.path.exists(cascPath):
Expand Down
Binary file added Snapchat_Filters/MinionEyes Filter/img/output.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit dcbe5c9

Please sign in to comment.