sudo pip3 install tensorflow
sudo pip3 install opencv-python
sudo pip3 install numpy
sudo pip3 install pypaz
git clone https://github.com/oarriaga/paz.git
cd paz
cd examples
cd face_classification
python3 demo.py
You can now do it! Thank you for your hard work!
sudo nano demo.py
This line
player = VideoPlayer((640, 480), pipeline, camera)
Changed as follows
player = VideoPlayer((1152, 864), pipeline, camera)
Now the window size is bigger and easier to see!
Recommended Posts