Document optional LineFollower ROI crop and mask denoising - #67
Open
SuhaanCoding wants to merge 1 commit into
Open
Document optional LineFollower ROI crop and mask denoising#67SuhaanCoding wants to merge 1 commit into
SuhaanCoding wants to merge 1 commit into
Conversation
Documents the CROP_TOP_FRACTION and MASK_MORPH_KERNEL config values added to the CV LineFollower in autorope/donkeycar#1242. Both default to a no-op, so existing behavior is unchanged. Adds a "Choosing Parameters" subsection explaining when to use each (upper-frame clutter, glare/speckle, white lines) and lists the keys in the LineFollower Configuration block. Companion docs PR for autorope/donkeycar#1242. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What this documents
Companion documentation for autorope/donkeycar#1242, which adds two optional,
default-off robustness controls to the computer-vision
LineFollower:CROP_TOP_FRACTION— ignore line-colored pixels above a fraction of the imageheight so clutter high in the frame (people, banners, walls, sunlight) cannot
bias the detected line position.
MASK_MORPH_KERNEL— morphological open+close to denoise the color mask.Changes
Extends
docs/guide/computer_vision/computer_vision.md:to use it (upper-frame clutter, glare/speckle, and white-line following).
their no-op defaults so it's clear existing behavior is unchanged.
Notes