You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
880 B
JavaScript
43 lines
880 B
JavaScript
![]()
11 years ago
|
/**
|
||
|
* The basic configuration
|
||
|
*/
|
||
|
|
||
|
define(function(){
|
||
|
var config = {
|
||
|
inputStream: { name: "Live",
|
||
|
type: "LiveStream"
|
||
|
},
|
||
|
tracking: false,
|
||
|
debug: false,
|
||
|
controls: false,
|
||
|
locate: true,
|
||
|
visual: {
|
||
|
show: true
|
||
|
},
|
||
|
decoder:{
|
||
|
drawBoundingBox: true,
|
||
|
showFrequency: false,
|
||
|
drawScanline: true,
|
||
|
showPattern: false,
|
||
|
readers: [
|
||
|
'code_128_reader'
|
||
|
]
|
||
|
},
|
||
|
locator: {
|
||
|
showCanvas: false,
|
||
|
showPatches: false,
|
||
|
showFoundPatches: false,
|
||
|
showSkeleton: false,
|
||
|
showLabels: false,
|
||
|
showPatchLabels: false,
|
||
|
showRemainingPatchLabels: false,
|
||
|
boxFromPatches: {
|
||
|
showTransformed: false,
|
||
|
showTransformedBox: false,
|
||
|
showBB: false
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
|
||
|
return config;
|
||
|
});
|