Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bugs & adjust parameters in line_follower.py. Issue #9. #22

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

mhered
Copy link
Owner

@mhered mhered commented Feb 9, 2022

In line_follower.py fix two bugs and fine-tune parameters:

  • Fix bug when calling process_frame() with
    text_bat = drone.get_battery(). This triggers a type error in
    cv2.putText(). Replace by text_bat = f"{drone.get_battery()}%"
    to make it a string (and add '%')
  • Move h,w,c, = frame.shape out of the if statements to fix bug when
    no contours found

In `line_follower fix two bugs and fine-tune parameters:
- Fix bug when calling `process_frame()` with
  `text_bat = drone.get_battery()`. This triggers an error in
  `cv2.putText()`. Replace by `text_bat = f"{drone.get_battery()}%"`.
- Move `h,w,c, = frame.shape` out of `if` statements to fix bug when
  no contours found

                                         50char->|             72char->|
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant