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.
52 lines
1.3 KiB
JavaScript
52 lines
1.3 KiB
JavaScript
![]()
10 years ago
|
module.exports = {
|
||
|
inputStream: {
|
||
|
name: "Live",
|
||
|
type: "LiveStream",
|
||
|
constraints: {
|
||
|
width: 640,
|
||
|
height: 480,
|
||
|
minAspectRatio: 0,
|
||
|
maxAspectRatio: 100,
|
||
|
facing: "environment" // or user
|
||
|
},
|
||
|
area: {
|
||
|
top: "0%",
|
||
|
right: "0%",
|
||
|
left: "0%",
|
||
|
bottom: "0%"
|
||
|
},
|
||
|
singleChannel: false // true: only the red color-channel is read
|
||
|
},
|
||
|
locate: true,
|
||
|
numOfWorkers: 0,
|
||
|
decoder: {
|
||
|
readers: [
|
||
|
'code_128_reader'
|
||
|
],
|
||
|
debug: {
|
||
|
drawBoundingBox: false,
|
||
|
showFrequency: false,
|
||
|
drawScanline: false,
|
||
|
showPattern: false,
|
||
|
}
|
||
|
},
|
||
|
locator: {
|
||
|
halfSample: true,
|
||
|
patchSize: "medium", // x-small, small, medium, large, x-large
|
||
|
debug: {
|
||
|
showCanvas: true,
|
||
|
showPatches: true,
|
||
|
showFoundPatches: false,
|
||
|
showSkeleton: false,
|
||
|
showLabels: false,
|
||
|
showPatchLabels: false,
|
||
|
showRemainingPatchLabels: false,
|
||
|
boxFromPatches: {
|
||
|
showTransformed: false,
|
||
|
showTransformedBox: false,
|
||
|
showBB: false
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|