diff --git a/photon-client/src/components/pipeline/CameraAndPipelineSelect.vue b/photon-client/src/components/pipeline/CameraAndPipelineSelect.vue index 2619e38af..4e2cc5e1a 100644 --- a/photon-client/src/components/pipeline/CameraAndPipelineSelect.vue +++ b/photon-client/src/components/pipeline/CameraAndPipelineSelect.vue @@ -153,7 +153,7 @@ v-model="currentPipelineType" name="Type" tooltip="Changes the pipeline type, which changes the type of processing that will happen on input frames" - :list="['Reflective Tape', 'Colored Shape', 'AprilTag']" + :list="['Reflective Tape', 'Colored Shape', 'AprilTag', 'Aruco']" @input="e => showTypeDialog(e)" /> diff --git a/photon-client/src/store/index.js b/photon-client/src/store/index.js index 259042f78..b0e475569 100644 --- a/photon-client/src/store/index.js +++ b/photon-client/src/store/index.js @@ -52,7 +52,7 @@ export default new Vuex.Store({ isFovConfigurable: true, calibrated: false, currentPipelineSettings: { - pipelineType: 4, // One of "calib", "driver", "reflective", "shape", "AprilTag" + pipelineType: 5, // One of "calib", "driver", "reflective", "shape", "AprilTag" // 2 is reflective // Settings that apply to all pipeline types @@ -91,7 +91,7 @@ export default new Vuex.Store({ cornerDetectionAccuracyPercentage: 10, // Settings that apply to AprilTag - tagFamily: 0, + tagFamily: 1, decimate: 1.0, blur: 0.0, threads: 1, diff --git a/photon-client/src/views/PipelineView.vue b/photon-client/src/views/PipelineView.vue index c5ce3c153..a42f9eef5 100644 --- a/photon-client/src/views/PipelineView.vue +++ b/photon-client/src/views/PipelineView.vue @@ -1,37 +1,37 @@