Skip to content
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

Open
wants to merge 21 commits into
base: main
Choose a base branch
from

Conversation

Gold856
Copy link
Contributor

@Gold856 Gold856 commented Mar 20, 2025

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:

  • Pull Request title is short, imperative summary of proposed changes
  • The description documents the what and why
  • If this PR changes behavior or adds a feature, user documentation is updated
  • If this PR touches photon-serde, all messages have been regenerated and hashes have not changed unexpectedly
  • If this PR touches configuration, this is backwards compatible with settings back to v2024.3.1
  • If this PR addresses a bug, a regression test for it is added

Sorry, something went wrong.

@Gold856 Gold856 requested a review from a team as a code owner March 20, 2025 05:39
@mcm001
Copy link
Contributor

mcm001 commented Mar 21, 2025

Do we wanna hold off until champs on this one?

@Gold856
Copy link
Contributor Author

Gold856 commented Mar 21, 2025

I’d be fine with that. I think there are other places I could do refactors as well.

Comment on lines +79 to +82
public static record AprilTagDetectionPipeParams(
AprilTagFamily family,
AprilTagDetector.Config detectorParams,
AprilTagDetector.QuadThresholdParameters quadParams) {}
Copy link
Contributor

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.

Comment on lines +102 to +103
public static record AprilTagPoseEstimatorPipeParams(
Config config, CameraCalibrationCoefficients calibration, int nIters) {}
Copy link
Contributor

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.

@Gold856 Gold856 requested a review from a team as a code owner March 30, 2025 05:13
@Gold856 Gold856 force-pushed the refactor branch 3 times, most recently from a5f8e63 to 76f6528 Compare March 30, 2025 06:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants