Skip to content

Commit

Permalink
Minor cleanups and patches
Browse files Browse the repository at this point in the history
  • Loading branch information
tuxbotix committed Nov 21, 2024
1 parent 9887820 commit 401b907
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion crates/control/src/behavior/calibrate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub fn execute(
HeadMotion::LookAt {
target,
camera: Some(camera),
image_region_target: ImageRegion::Bottom,
image_region_target: ImageRegion::Center,
}
} else {
HeadMotion::Unstiff
Expand Down
10 changes: 5 additions & 5 deletions crates/control/src/calibration_controller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -283,11 +283,11 @@ fn collect_filtered_values(
// TODO Add fancier logic to either set this via parameters OR detect the location, walk, etc
fn generate_look_at_list() -> Vec<(Point2<Ground>, CameraPosition)> {
let look_at_points: Vec<Point2<Ground>> = vec![
point![1.0, -0.5],
point![2.5, -0.5],
point![2.5, 0.0],
point![2.5, 0.5],
point![1.0, 0.5],
point![1.0, -0.2],
point![2.0, -0.2],
point![2.0, 0.0],
point![2.0, 0.2],
point![1.0, 0.2],
point![1.0, 0.0],
];

Expand Down

0 comments on commit 401b907

Please sign in to comment.