This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
########## | |
# Win10 Initial Setup Script | |
# Author: Disassembler <[email protected]> | |
# Version: 1.7, 2016-08-15 | |
# dasm's script: https://github.com/Disassembler0/Win10-Initial-Setup-Script/ | |
# THIS IS A PERSONALIZED VERSION | |
# This script leaves more MS defaults on, including MS security features. | |
# Tweaked based on personal preferences for @alirobe 2016-11-16 - v1.7.1 |
I hereby claim:
- I am silviogreuel on github.
- I am silviogreuel (https://keybase.io/silviogreuel) on keybase.
- I have a public key ASCjREIc8hFBvh7EQypnM-DUP4KfoNWVzMw97SRLWVlxswo
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import cv2 as cv | |
upper = cv.CascadeClassifier("haarcascade_upperbody.xml") | |
body = cv.CascadeClassifier("haarcascade_fullbody.xml") | |
face = cv.CascadeClassifier("haarcascade_frontalface_default.xml") | |
smile = cv.CascadeClassifier("haarcascade_smile.xml") | |
def detect(cascade, frame): | |
return cascade.detectMultiScale(gray, 1.3, 5) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.pyimagesearch.com/2018/05/28/ubuntu-18-04-how-to-install-opencv/ |