mirror of
https://github.com/PhotonVision/photonvision
synced 2026-07-03 03:01:40 +00:00
Fix Aruco leak + remove old tag families (#1661)
- Remove 16h5 - Fix leak in ArucoPoseEstimatorPipe
This commit is contained in:
@@ -27,7 +27,7 @@ const interactiveCols = computed(() =>
|
||||
<pv-select
|
||||
v-model="currentPipelineSettings.tagFamily"
|
||||
label="Target family"
|
||||
:items="['AprilTag 36h11 (6.5in)', 'AprilTag 25h9 (6in)', 'AprilTag 16h5 (6in)']"
|
||||
:items="['AprilTag 36h11 (6.5in)', 'AprilTag 16h5 (6in)']"
|
||||
:select-cols="interactiveCols"
|
||||
@input="(value) => useCameraSettingsStore().changeCurrentPipelineSetting({ tagFamily: value }, false)"
|
||||
/>
|
||||
|
||||
@@ -27,7 +27,7 @@ const interactiveCols = computed(() =>
|
||||
<pv-select
|
||||
v-model="currentPipelineSettings.tagFamily"
|
||||
label="Target family"
|
||||
:items="['AprilTag Family 36h11', 'AprilTag Family 25h9', 'AprilTag Family 16h5']"
|
||||
:items="['AprilTag Family 36h11', 'AprilTag Family 16h5']"
|
||||
:select-cols="interactiveCols"
|
||||
@input="(value) => useCameraSettingsStore().changeCurrentPipelineSetting({ tagFamily: value }, false)"
|
||||
/>
|
||||
|
||||
@@ -11,8 +11,7 @@ export enum PipelineType {
|
||||
|
||||
export enum AprilTagFamily {
|
||||
Family36h11 = 0,
|
||||
Family25h9 = 1,
|
||||
Family16h5 = 2
|
||||
Family16h5 = 1
|
||||
}
|
||||
|
||||
export enum RobotOffsetPointMode {
|
||||
|
||||
Reference in New Issue
Block a user