Skip to content

Commit

Permalink
Change cycle back to one cutoff value only
Browse files Browse the repository at this point in the history
  • Loading branch information
jtklein committed Oct 30, 2024
1 parent f5fea9a commit 6c41551
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/Camera/ARCamera/FrameProcessorCamera.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ const FrameProcessorCamera = ( props: Props ) => {

const patchedRunAsync = usePatchedRunAsync();
const patchedOrientationAndroid = orientationPatchFrameProcessor( deviceOrientation );
const cuttoffCycle = [0.1, 0.01, 0.0];
const cuttoffCycle = [0.00001];
const frameProcessor = useFrameProcessor(
( frame ) => {
"worklet";
Expand Down Expand Up @@ -250,6 +250,7 @@ const FrameProcessorCamera = ( props: Props ) => {
[
patchedRunAsync,
confidenceThreshold,
timesRun,
filterByTaxonId,
negativeFilter,
patchedOrientationAndroid,
Expand Down

0 comments on commit 6c41551

Please sign in to comment.