Skip to content

Commit

Permalink
Change annotate_cube to annotate_sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
touretzkyds committed Jan 1, 2018
1 parent 3de7df3 commit cdd4aaf
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cozmo_fsm/examples/CV_Contour.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
class CV_Contour(StateMachineProgram):
def __init__(self):
super().__init__(aruco=False, particle_filter = False, cam_viewer=True,
annotate_cube = False)
annotate_sdk = False)

def start(self):
cv2.namedWindow('contour')
Expand Down
2 changes: 1 addition & 1 deletion cozmo_fsm/examples/CV_GoodFeatures.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class CV_GoodFeatures(StateMachineProgram):
def __init__(self):
super().__init__(aruco=False, cam_viewer=True, annotate_cube = False)
super().__init__(aruco=False, cam_viewer=True, annotate_sdk = False)

def start(self):
cv2.namedWindow('features')
Expand Down
2 changes: 1 addition & 1 deletion cozmo_fsm/examples/CV_Hough.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
class CV_Hough(StateMachineProgram):
def __init__(self):
super().__init__(aruco=False, particle_filter = False, cam_viewer=True,
annotate_cube = False)
annotate_sdk = False)

def start(self):
cv2.namedWindow('edges')
Expand Down
2 changes: 1 addition & 1 deletion cozmo_fsm/examples/CV_OpticalFlow.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
class CV_OpticalFlow(StateMachineProgram):
def __init__(self):
super().__init__(aruco=False, particle_filter=False, cam_viewer=True,
annotate_cube = False)
annotate_sdk = False)

def start(self):
self.feature_params = dict( maxCorners = 100,
Expand Down
2 changes: 1 addition & 1 deletion cozmo_fsm/examples/CV_Thresh.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
class CV_Thresh(StateMachineProgram):
def __init__(self):
super().__init__(aruco=False, particle_filter=False, cam_viewer=True,
annotate_cube = False)
annotate_sdk = False)

def start(self):
cv2.namedWindow('edges')
Expand Down

0 comments on commit cdd4aaf

Please sign in to comment.