File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
photon-client/src/components/dashboard/tabs
photon-core/src/main/java/org/photonvision/vision/pipeline Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,9 @@ const interactiveCols = computed(() =>
5353 v-model =" currentPipelineSettings.rejectTagIds"
5454 label =" Reject Tag IDs"
5555 tooltip =" Tag IDs to reject for multitag estimation"
56- :label-cols =" 4"
56+ @update:modelValue ="
57+ (value) => useCameraSettingsStore().changeCurrentPipelineSetting({ rejectTagIds: [value] }, true)
58+ "
5759 />
5860 <pv-slider
5961 v-model =" currentPipelineSettings.threads"
Original file line number Diff line number Diff line change 1818package org .photonvision .vision .pipeline ;
1919
2020import com .fasterxml .jackson .annotation .JsonTypeName ;
21+
22+ import java .util .ArrayList ;
2123import java .util .List ;
2224import org .photonvision .vision .apriltag .AprilTagFamily ;
2325import org .photonvision .vision .target .TargetModel ;
@@ -35,7 +37,7 @@ public class AprilTagPipelineSettings extends AdvancedPipelineSettings {
3537 public int decisionMargin = 35 ;
3638 public boolean doMultiTarget = false ;
3739 public boolean doSingleTargetAlways = false ;
38- public List <Integer > rejectTagIds = List . of ();
40+ public List <Integer > rejectTagIds = new ArrayList <> ();
3941
4042 public AprilTagPipelineSettings () {
4143 super ();
You can’t perform that action at this time.
0 commit comments