-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing Follow Crop Navigation (#103)
* tests follow_crop_navigation * correcting tests * correcting tests * optimizing tests * adjusting minimum crop number and max distance for calculating row direction * merged with 'main' * deleting three time detection of crop check * optimizing drive distance * refining tests * updating tests * tests with correctly calculated values * cleanup --------- Co-authored-by: Pascal Schade <[email protected]>
- Loading branch information
1 parent
87c3805
commit 2449b30
Showing
4 changed files
with
142 additions
and
31 deletions.
There are no files selected for viewing
18 changes: 9 additions & 9 deletions
18
backup/rb34/field_friend.automations.implements.weeding_screw.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{ | ||
"with_drilling": false, | ||
"with_chopping": false, | ||
"chop_if_no_crops": false, | ||
"cultivated_crop": null, | ||
"crop_safety_distance": 0.02, | ||
"with_punch_check": false, | ||
"weed_screw_depth": 0.14, | ||
"max_crop_distance": 0.08 | ||
} | ||
"with_drilling": false, | ||
"with_chopping": false, | ||
"chop_if_no_crops": false, | ||
"cultivated_crop": null, | ||
"crop_safety_distance": 0.02, | ||
"with_punch_check": false, | ||
"weed_screw_depth": 0.14, | ||
"max_crop_distance": 0.08 | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
{ | ||
"minimum_weed_confidence": 0.3, | ||
"minimum_crop_confidence": 0.3, | ||
"autoupload": "filtered", | ||
"upload_images": false, | ||
"tags": [ | ||
"kiebitz" | ||
] | ||
} | ||
"minimum_weed_confidence": 0.3, | ||
"minimum_crop_confidence": 0.3, | ||
"autoupload": "filtered", | ||
"upload_images": false, | ||
"tags": ["kiebitz"] | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"match_distance": 0.1, | ||
"crop_spacing": 0.18, | ||
"predict_crop_position": false, | ||
"prediction_confidence": 0.3, | ||
"crop_confidence_threshold": 0.6, | ||
"weed_confidence_threshold": 0.35 | ||
} | ||
"match_distance": 0.1, | ||
"crop_spacing": 0.18, | ||
"predict_crop_position": false, | ||
"prediction_confidence": 0.3, | ||
"crop_confidence_threshold": 0.6, | ||
"weed_confidence_threshold": 0.35 | ||
} |
This file contains 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