-
Notifications
You must be signed in to change notification settings - Fork 229
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
Make various refactors to clean up codebase #1830
base: main
Are you sure you want to change the base?
Conversation
Do we wanna hold off until champs on this one? |
I’d be fine with that. I think there are other places I could do refactors as well. |
photon-core/src/main/java/org/photonvision/common/configuration/HardwareConfig.java
Show resolved
Hide resolved
public static record AprilTagDetectionPipeParams( | ||
AprilTagFamily family, | ||
AprilTagDetector.Config detectorParams, | ||
AprilTagDetector.QuadThresholdParameters quadParams) {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Love it. this looks great.
public static record AprilTagPoseEstimatorPipeParams( | ||
Config config, CameraCalibrationCoefficients calibration, int nIters) {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Equals and hashcode used to only check config. It looks like this behavior was exploited by setParams, since we only need to update m_poseEstimator if config changes? I think this is silly though, and i dont see a reason to preserve the old behavior so long as m_poseEstimator.setConfig still is only called when it needs to be.
a5f8e63
to
76f6528
Compare
…used because we use libcamera now)
…efinitely never modified
Description
Classes that were unused have been removed to tidy up the codebase.
The creation of arrays was also tidied up, using initializers when possible and just
new Type[0]
for zero length arrays.Text blocks were used to increase readability.
VideoSimUtil was refactored to reduce copies when generating 36h11 tag images.
FileSaveFrameConsumer was refactored to let Java handle paths instead of us doing it manually.
Finally, HardwareConfig was made into a record. This change I'm iffy about because of how wide the changes are and it can be reverted if desired. But it does reduce the amount of code in the HardwareConfig file itself.
Meta
Merge checklist: