Installing Computer Vision
1 Install the SysPacks
- Download the SySDigitalSolutionPackages.zip archive.
- Unzip the archive and follow the instructions from the from the SysPacks Installation page.
NOTE We recommend that you load sdk/dcs-usermedia-component.js and sdk/dcs-usermedia-component.js.map by placing them in the custom-on-demand folder, and import them using the injectScriptAsync method. See example below:
Copy
if (window.UsermediaComponent == undefined) {
var slash = ebs.getBaseUrl().slice(-1) === "/" ? "" : "/";
await ebs.injectScriptAsync(
ebs.getBaseUrl() +
slash +
"custom-on-demand/components/dcs-usermedia-component.js"
);
}
2 Set up the Cognitive Processor subscription key(s)
On the FintechOS Portal server or B2C (depending on where the server side script is executing), open the web.config file in a text editor and add the following entries in the <appSettings> section:
Copy
<add key="FTOSServicesOCR2Endpoint" value="URL to the services endpoint"/>
<add key="FTOSServicesOCR2AppId" value="service authentication key"/>