-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* work on implement two limelight interpolate vision * double limelight interpolated vision * format with spotless * Remove accidental committed file * implement interpolated vision --------- Co-authored-by: owenrobotics581 <[email protected]> Co-authored-by: Jordan <[email protected]>
- Loading branch information
1 parent
973fa46
commit 95d9a96
Showing
5 changed files
with
94 additions
and
84 deletions.
There are no files selected for viewing
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
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
7 changes: 7 additions & 0 deletions
7
src/main/java/frc/robot/vision/interpolation/CameraDataset.java
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package frc.robot.vision.interpolation; | ||
|
||
import java.util.List; | ||
|
||
/** A interpolated vision data set for a specific camera. */ | ||
public record CameraDataset( | ||
List<VisionInterpolationData> red, List<VisionInterpolationData> blue) {} |
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
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