changed gitignore and disabled straight movement in ball_approach
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -1,5 +1,6 @@
|
|||||||
*.sw*
|
*.sw*
|
||||||
*.pyc
|
*.pyc
|
||||||
*.jpg
|
*.jpg
|
||||||
~*~
|
*~
|
||||||
|
~*
|
||||||
exp_*
|
exp_*
|
||||||
|
|||||||
@@ -107,7 +107,7 @@ if __name__ == '__main__':
|
|||||||
hsv_lower=tuple(map(cfg.get, ('low_h', 'low_s', 'low_v'))),
|
hsv_lower=tuple(map(cfg.get, ('low_h', 'low_s', 'low_v'))),
|
||||||
hsv_upper=tuple(map(cfg.get, ('high_h', 'high_s', 'high_v'))),
|
hsv_upper=tuple(map(cfg.get, ('high_h', 'high_s', 'high_v'))),
|
||||||
min_radius=cfg['min_radius'],
|
min_radius=cfg['min_radius'],
|
||||||
run_after=True
|
run_after=False
|
||||||
)
|
)
|
||||||
try:
|
try:
|
||||||
while True:
|
while True:
|
||||||
|
|||||||
Reference in New Issue
Block a user