IP Updates

This commit is contained in:
bendtherules
2014-02-27 05:30:34 +05:30
parent c6bd1dd5c4
commit fde2ccb814
15 changed files with 94 additions and 16 deletions
+4 -4
View File
@@ -1,10 +1,10 @@
import SimpleCV as s import SimpleCV as s
import time import time
#cam=s.Camera() cam=s.Camera()
cam=s.JpegStreamCamera(r"192.168.173.227:8080/videofeed") #cam=s.JpegStreamCamera(r"192.168.173.227:8080/videofeed")
c1=time.clock() c1=time.clock()
while True: for a in range(200):
img=cam.getImage().show() img=cam.getImage()#.show()
c2=time.clock() c2=time.clock()
print(1/(c1-c2)) print(1/(c1-c2))
c1=c2 c1=c2
+1 -1
View File
@@ -12,7 +12,7 @@ while count<5:
f.draw(width=2) f.draw(width=2)
i.show() i.show()
i.flipHorizontal().save(r"E:\Babu\pytry\robocon\face_detect.jpg") i.flipHorizontal().save(r"D:\Babu\github_files\pytry\robocon\face_detect.jpg")
##f.show() ##f.show()
##import time ##import time
##cl=time.clock() ##cl=time.clock()
+9 -2
View File
@@ -7,8 +7,10 @@ c1=time.clock()
gesture_time=30 gesture_time=30
detection_sleep=False detection_sleep=False
blobs=[None]*gesture_time blobs=[None]*gesture_time
fname = r"C:\Users\abhas\Desktop\test.avi"
vs = s.VideoStream(fps=25,filename=fname,framefill=False)
debug=True debug=False
#d=s.Display() #d=s.Display()
i1=c.getImage() i1=c.getImage()
img_width_ori=i1.width img_width_ori=i1.width
@@ -16,8 +18,11 @@ img_height=i1.height
i1=i1.crop(img_width_ori/4,0,img_width_ori*3/4,img_height/2).flipHorizontal() i1=i1.crop(img_width_ori/4,0,img_width_ori*3/4,img_height/2).flipHorizontal()
img_width=img_width_ori/2 img_width=img_width_ori/2
count=0 count=0
print("Recording starts.. :D")
while True: while True:
i2=c.getImage().crop(img_width_ori/4,0,img_width_ori*3/4,img_height/2).flipHorizontal() i2=c.getImage()
vs.writeFrame(i2)
i2=i2.crop(img_width_ori/4,0,img_width_ori*3/4,img_height/2).flipHorizontal()
i3=(i2-i1)+(i1-i2) i3=(i2-i1)+(i1-i2)
i1=i2 i1=i2
i3=i3.stretch(10,255).erode(2).dilate(2) i3=i3.stretch(10,255).erode(2).dilate(2)
@@ -52,10 +57,12 @@ while True:
if right_step>left_step: if right_step>left_step:
print("Left to right") print("Left to right")
if not debug: if not debug:
print("Up pressed")
press.press_up() press.press_up()
else: else:
print("Right to left") print("Right to left")
if not debug: if not debug:
print("Down pressed")
press.press_down() press.press_down()
print(c1) print(c1)
detection_sleep=gesture_time*2 detection_sleep=gesture_time*2
+9 -9
View File
@@ -5,17 +5,17 @@ import pygame.gfxdraw
from pygame.locals import * # imports the constants from pygame.locals import * # imports the constants
from math import * from math import *
#Mouse constants #Mouse constants
B_LEFT_CLICK=1 B_LEFT_CLICK =1
B_RIGHT_CLICK=3 B_RIGHT_CLICK =3
B_MIDDLE_CLICK=2 B_MIDDLE_CLICK =2
B_SCROLLUP=4 B_SCROLLUP =4
B_SCROLLDOWN=5 B_SCROLLDOWN =5
# Direction constants # Direction constants
TOP=1 TOP =1
LEFT=2 LEFT =2
BOTTOM=3 BOTTOM =3
RIGHT=4 RIGHT =4
class fun_Game(object): class fun_Game(object):
list_class=uniquelist() list_class=uniquelist()
+5
View File
@@ -0,0 +1,5 @@
letters=["a","e","c","t","r","s","o"]
words=["rate","rose","cat","at","ate","actor","eat","car","roast","star","start","soccer","cast","sore","arc","art","toe","sort"]
guess=raw_input()
print(guess)
Binary file not shown.

Before

Width:  |  Height:  |  Size: 67 KiB

After

Width:  |  Height:  |  Size: 56 KiB

+66
View File
@@ -0,0 +1,66 @@
import SimpleCV as s
from math import *
import time as t
thresh=8 # in percentage
fname=r"D:\Babu\github_files\pytry\shape_detect\pics\rect.jpg"
c=s.Camera()
def run():
t1=t.clock()
i=s.Image(fname).scale(.25)
#i=c.getImage()
#i.show()
blobs=i.findBlobs()
def isClose(a,b):
if float(abs(a-b))/min(a,b)*100<=thresh:
return True
else:
return False
def checkSymmetry():
tmp_img=blob.crop()
#tmp_img.show()
tmp_img_upper=tmp_img.crop(0,0,tmp_w,tmp_h/2)
tmp_img_lower=tmp_img.crop(0,tmp_h/2,tmp_w,tmp_h/2)
#tmp_img_upper.sideBySide(tmp_img_lower).show()
tmp_blob_upper=tmp_img_upper.findBlobs()[0]
tmp_blob_lower=tmp_img_lower.findBlobs()[0]
return isClose(tmp_blob_upper.area(),tmp_blob_lower.area())
def checkCircle():
if isClose(tmp_w,tmp_h) and isClose(pi*(tmp_w/2)**2,tmp_a):
return "Circle"
else:
return False
def checkRect():
if isClose(tmp_w*tmp_h,tmp_a):
return "Rectangle"
else:
return False
def checkTri():
if isClose(0.5*tmp_w*tmp_h,tmp_a) and not checkSymmetry():
return "Triangle"
else:
return False
if blobs:
#blobs.show()
for blob in blobs:
tmp_w=blob.width()
tmp_h=blob.height()
tmp_a=blob.area()
#print(tmp_w,tmp_h,tmp_a)
isCircle=checkCircle()
#print(isCircle)
isRect=checkRect()
#print(isRect)
isTri=checkTri()
#print(isTri)
print isCircle or isRect or isTri
t2=t.clock()
print(1/(t2-t1))
run()
Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.4 KiB

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.8 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 11 KiB