mirror of
https://github.com/bendtherules/pytry.git
synced 2026-08-18 13:53:01 +00:00
31 lines
694 B
Python
31 lines
694 B
Python
import SimpleCV as s
|
|
#c=s.JpegStreamCamera(r"http://192.168.173.144:8080/videofeed")
|
|
c=s.Camera()
|
|
##i=c.getImage().scale(.5)
|
|
##f=i.findHaarFeatures("face.xml")
|
|
count=1
|
|
while count<5:
|
|
count+=1
|
|
i=c.getImage()
|
|
f=i.findHaarFeatures("face.xml")
|
|
if f:
|
|
f.draw(width=2)
|
|
i.show()
|
|
|
|
i.flipHorizontal().save(r"E:\Babu\pytry\robocon\face_detect.jpg")
|
|
##f.show()
|
|
##import time
|
|
##cl=time.clock()
|
|
##if time.clock()-cl<2:
|
|
## pass
|
|
##fs1=[]
|
|
##bbox=f[0].boundingBox()
|
|
##
|
|
##while True:
|
|
## img1 = c.getImage()
|
|
## fs1 = img1.track("camshift",fs1,i,tuple(bbox),num_frames=5)
|
|
## fs1.drawBB()
|
|
## fs1.draw()
|
|
## img1.show()
|
|
## del img1
|
|
#fs1.drawPredict(color=Color.RED) |