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
1 change: 1 addition & 0 deletions programming/android/guide/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ noTitleIndex: true
needGenerateH3Content: true
breadcrumbText: Android Guide
permalink: /programming/android/guide/guide.html
ignore: true
---

# Dynamsoft Camera Enhancer User Guide for Android (Java)
Expand Down
16 changes: 8 additions & 8 deletions programming/android/guide/scan-region.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ permalink: /programming/android/guide/scan-region.html

```java
DSRect region = new DSRect();
region.left = 15;
region.right = 85;
region.top = 30;
region.bottom = 70;
region.left = 0.15;
region.right = 0.85;
region.top = 0.3;
region.bottom = 0.7;
region.isMeasuredInPercentage = true;
try {
mCameraEnhancer.setScanRegion(region);
Expand Down Expand Up @@ -54,10 +54,10 @@ Since the scan region is set for the video streaming, its coordinate system migh

```java
DSRect region = new DSRect();
region.left = 15;
region.right = 85;
region.top = 30;
region.bottom = 70;
region.left = 0.15;
region.right = 0.85;
region.top = 0.3;
region.bottom = 0.7;
region.isMeasuredInPercentage = true;
try {
mCameraEnhancer.setScanRegion(region);
Expand Down
23 changes: 0 additions & 23 deletions programming/android/index.md

This file was deleted.

1 change: 1 addition & 0 deletions programming/ios/guide/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ noTitleIndex: true
needGenerateH3Content: true
breadcrumbText: iOS Guide
permalink: /programming/ios/guide/guide.html
ignore: true
---

# User Guide on iOS
Expand Down
23 changes: 0 additions & 23 deletions programming/ios/index.md

This file was deleted.

2 changes: 1 addition & 1 deletion programming/maui/api-reference/camera-enhancer.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ void Close();

### SetScanRegion

Set a scan region. The video frame is cropped based on the scan region. To learn the full code to setting a scan region, please refer to the [scan region](../guide/scan-region.md) article.
Set a scan region. The video frame is cropped based on the scan region.

```csharp
void SetScanRegion(DMRect scanRegion);
Expand Down