Skip to content

Commit 7636043

Browse files
docs: Update single-image-processing.md to be more clear on the template used by default
1 parent 7c91ee9 commit 7636043

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

programming/javascript/api-reference/capture-vision-router/single-image-processing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ capture(imageOrFile: Blob | HTMLImageElement | HTMLCanvasElement | HTMLVideoElem
2929

3030
`imageOrFile`: specifies the image or file to be processed. The following data types are accepted: `Blob`, `HTMLImageElement`, `HTMLCanvasElement`, `HTMLVideoElement`, `DSImageData`, `string`.
3131

32-
`templateName`: specifies a "CaptureVisionTemplate" to use. If not specified, "Default" is used.
32+
`templateName`: specifies a "CaptureVisionTemplate" to use. If not specified, the preset template named 'Default' will be used.
3333

3434
There are two types of CaptureVisionTemplates: the [preset ones](./preset-templates.md) which come with the SDK and the custom ones that get initialized when the user calls [initSettings](./settings.md#initsettings).
3535

@@ -48,4 +48,4 @@ let count = results.items.length;
4848
for(let i = 0; i < count; i++) {
4949
//...
5050
}
51-
```
51+
```

0 commit comments

Comments
 (0)