Skip to content

Image Quality

  • Set the threshold for an actual document DPI below which the check fails:
DocumentReader.setConfig({
    processParams: {
        imageQA: {
          dpiThreshold: 150
        }
    },
}, function (m) { }, function (e) { console.log(e); });
  • Set the threshold for an actual document perspective angle above which the check fails:
DocumentReader.setConfig({
    processParams: {
        imageQA: {
          angleThreshold: 5
        }
    },
}, function (m) { }, function (e) { console.log(e); });
  • Disable / enable the focus check for the image quality validation:
DocumentReader.setConfig({
    processParams: {
        imageQA: {
          focusCheck: true
        }
    },
}, function (m) { }, function (e) { console.log(e); });
  • Disable / enable the glares check for the image quality validation:
DocumentReader.setConfig({
    processParams: {
        imageQA: {
          glaresCheck: true
        }
    },
}, function (m) { }, function (e) { console.log(e); });
  • Disable / enable the colorness check for the image quality validation:
DocumentReader.setConfig({
    processParams: {
        imageQA: {
          colornessCheck: true
        }
    },
}, function (m) { }, function (e) { console.log(e); });
  • Disable / enable the moire patterns check for the image quality validation:
DocumentReader.setConfig({
    processParams: {
        imageQA: {
          moireCheck: true
        }
    },
}, function (m) { }, function (e) { console.log(e); });
  • This option controls the quality checks that the image should pass to be considered a valid input during the scanning process.
DocumentReader.setConfig({
    processParams: {
        imageQA: {
          expectedPass: [
            eImageQualityCheckType.IQC_IMAGE_RESOLUTION,
            eImageQualityCheckType.IQC_IMAGE_GLARES
          ]
        }
    },
}, function (m) { }, function (e) { console.log(e); });

Next Steps