Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 10 additions & 7 deletions parameters/file/auxiliary/capture-vision-model.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,20 @@ A `CaptureVisionModel` object defines how the library find Convolutional Neural
<p>Supported CaptureVisionModel files</p>
</div>


## Example

```json
{
"Name": "NumberLetterCharRecognition",
"DirectoryPath": "D:\\CaptureVisionModel\\",
"MaxModelInstances": 1,
"ModelArgs": {
"CharSet": {}
"CaptureVisionModelOptions": [
{
"Name": "NumberLetterCharRecognition",
"DirectoryPath": "D:\\CaptureVisionModel\\",
"MaxModelInstances": 1,
"ModelArgs": {
"CharSet": {}
}
}
}
]
```

## Available Parameters
Expand Down
11 changes: 11 additions & 0 deletions parameters/file/auxiliary/char-set.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,17 @@ needGenerateH3Content: true

Parameter `CharSet` is an object that defines specific configurations for character recognition. It allows for the inclusion of special characters and the exclusion of certain characters, providing more control over which characters are recognized or ignored during processing.

## JSON Structure

**Location in template:**
```
CaptureVisionModelOptions[i]
└── ModelArgs
└── CharSet
```

**Parent object:** [ModelArgs]({{ site.dcvb_parameters }}file/auxiliary/capture-vision-model.html#modelargs) object

## Example

```json
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Filter the reference object by specifying `TargetROI` names.
| ReferenceTargetROIDefNameArray Parameter Details |
| :------------------- |
| **Type**<br>*String[]* |
| **Range**<br>Each member should be a name of `TargetROI` that defined in `TargetROIDefOptions`. |
| **Range**<br>Each member should be the name of a `TargetROIDef` object that is defined in `TargetROIDefOptions`. |
| **Default Value**<br>null |

## AtomicResultTypeArray
Expand All @@ -29,10 +29,11 @@ Filter the reference object by specifying the type of atomic results. In the `Ta

## ReferenceTaskNameArray

Filter the reference object by specifying the reference task name array.
Filter the reference object by specifying `TaskSetting` names.

| AtomicResultTypeArray Parameter Details |
| ReferenceTaskNameArray Parameter Details |
| :------------------- |
| **Type**<br>*String[]* |
| **Range**<br>Each member should be one of the task in the reference `TargetROIDef` object array. |
| **Range**<br>Each member should be the name of a `TaskSetting` object. |
| **Default Value**<br>null |
| **Remarks**<br>`ReferenceTargetROIDefNameArray` must be specified and the task must be referenced in these `TargetROIDef` objects.|