Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Maximilian Schrapel committed Oct 16, 2020
1 parent 520ab1e commit cddd9d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This repository demonstrates how easy we can bring emotions back to video chat programs when wearing face masks.
Imagine you are in an important video meeting while you are at a public place or a train where face masks are mandatory. You could be misunderstood as you have limited opportunities to express your emotions.
By attaching an ArUco marker to your face mask and using my python script, you can easily enhance your emotions.
By attaching an ArUco marker to your face mask and using my python script, you can easily enhance your emotions. The [tutorial](Tutorial/README.md) explains how you can use [OBS Studio](https://obsproject.com/) to augment your webcam stream with any video chat software on your PC.
I used this script to teach my students basics of augmented reality. The emojis were taken from [OpenMoji](https://openmoji.org/).

![Teaser](Tutorial/Teaser.jpg)
Expand Down
2 changes: 1 addition & 1 deletion emoji_webcam.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def isMarker(img , marker):
if k == ord(str(i)):
imgindex=i
break;
if k == ord('ß') or k == ord('-'): # german and english keyboard layout
if k == ord('ß') or k == ord('_'): # german and english keyboard layout
imgindex = 10


Expand Down

0 comments on commit cddd9d0

Please sign in to comment.