Permalink
Fetching contributors…
Cannot retrieve contributors at this time
|
from webcam import WebCam |
|
from manipulators.facedetect import detect |
|
|
|
class FaceDectWebCam(WebCam): |
|
def process_image(self, im): |
|
return detect(im) |
|
|
|
if __name__=="__main__": |
|
webcam = FaceDectWebCam() |
|
webcam.capture_video() |
You can't perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.