File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
programming/javascript/user-guide Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -639,7 +639,7 @@ Under certain circumstances, this duration can be extended with the method `setD
639639
640640` ` ` js
641641let filter = new Dynamsoft.Utility.MultiFrameResultCrossFilter ();
642- filter .setDuplicateForgetTime (5000 ); // Extend the duration to 5 seconds.
642+ filter .setDuplicateForgetTime (" barcode " , 5000 ); // Extend the duration to 5 seconds.
643643await cvRouter .addResultFilter (filter);
644644` ` `
645645
@@ -649,7 +649,7 @@ You can also enable both options at the same time:
649649let filter = new Dynamsoft.Utility.MultiFrameResultCrossFilter ();
650650filter .enableResultCrossVerification (" barcode" , true );
651651filter .enableResultDeduplication (" barcode" , true );
652- filter .setDuplicateForgetTime (5000 );
652+ filter .setDuplicateForgetTime (" barcode " , 5000 );
653653await cvRouter .addResultFilter (filter);
654654` ` `
655655
You can’t perform that action at this time.
0 commit comments