Last active
February 22, 2016 11:15
-
-
Save Swapnull/cc8b1768cca0e72e55eb to your computer and use it in GitHub Desktop.
This file contains hidden or 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
class kinect(): | |
def __init__(self): | |
#initialize the class | |
def searchForRed(self): | |
#search for color with RGB values passed in | |
if found : | |
return true | |
else: | |
return false | |
def searchForGreen(self): | |
#search for color with RGB values passed in | |
if found : | |
return true | |
else: | |
return false | |
def searchForBlue(self): | |
#search for color with RGB values passed in | |
if found : | |
return true | |
else: | |
return false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment