Skip to content

Commit e512553

Browse files
update performance
1 parent 25fbe4a commit e512553

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<li><a href="{{ site.performance }}" class="otherLinkColour">Performance</a>
22
<ul>
3+
<li><a href="{{ site.performance }}speed.html" class="otherLinkColour">Speed</a></li>
34
<li><a href="{{ site.performance }}accuracy.html" class="otherLinkColour">Accuracy</a></li>
45
<li><a href="{{ site.performance }}read-rate.html" class="otherLinkColour">Read Rate</a></li>
5-
<li><a href="{{ site.performance }}speed.html" class="otherLinkColour">Speed</a></li>
66
{%- include liquid_searchVersionTreeFile.html ver=include.ver curPath=include.curPath targetRelativePath="introduction-comparison-tools.html" -%}
77
</ul>
88
</li>

_includes/sidelist-performance.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<li><a href="{{ site.performance }}" class="otherLinkColour">Performance</a>
22
<ul>
3+
<li><a href="{{ site.performance }}speed.html" class="otherLinkColour">Speed</a></li>
34
<li><a href="{{ site.performance }}accuracy.html" class="otherLinkColour">Accuracy</a></li>
45
<li><a href="{{ site.performance }}read-rate.html" class="otherLinkColour">Read Rate</a></li>
5-
<li><a href="{{ site.performance }}speed.html" class="otherLinkColour">Speed</a></li>
66
</ul>
77
</li>

performance/accuracy.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ When the frame filter feature of DCE is enabled, a quick sharpness evaluation wi
101101

102102
**Recommendation**
103103

104-
The frame-filter feature of DCE can be enabled via the [`enableEnhancedFeatures`](https://www.dynamsoft.com/camera-enhancer/docs/mobile/programming/android/primary-api/camera-enhancer.html#enableenhancedfeatures) method.
104+
The frame-filter feature of DCE can be enabled via the <a href="https://www.dynamsoft.com/camera-enhancer/docs/mobile/programming/android/primary-api/camera-enhancer.html#enableenhancedfeatures" target="_blank">`enableEnhancedFeatures`</a> method.
105105

106106
### Enhance the Camera Focus
107107

@@ -110,23 +110,23 @@ It is highly recommended that this feature be implemented on low-end devices. En
110110

111111
**Recommendation**
112112

113-
To enable the enhanced-focus feature of DCE, please use [`enableEnhancedFeatures`](https://www.dynamsoft.com/camera-enhancer/docs/mobile/programming/android/primary-api/camera-enhancer.html#enableenhancedfeatures).
113+
To enable the enhanced-focus feature of DCE, please use <a href="https://www.dynamsoft.com/camera-enhancer/docs/mobile/programming/android/primary-api/camera-enhancer.html#enableenhancedfeatures" target="_blank">`enableEnhancedFeatures`</a>.
114114

115115
### Set Higher Resolution
116116

117117
A higher resolution will promote the sharpness of the video frames and enlarge the module size of barcodes. Increasing the resolution will definitely benefit the barcode reading accuracy while sacrificing speed. In addition, please remember to set the `MinValue` of `ScaleDownThreshold` to a higher value if you want to decode on high-resolution video streaming. If the `ScaleDownThershold` is smaller than the size of video frames, the video frames will be shrunk to a smaller size before being decoded.
118118

119119
**Recommendation**
120120

121-
To configure the resolution, please use the [`setResolution`](https://www.dynamsoft.com/camera-enhancer/docs/mobile/programming/android/primary-api/camera-enhancer.html#setresolution) method.
121+
To configure the resolution, please use the <a href="https://www.dynamsoft.com/camera-enhancer/docs/mobile/programming/android/primary-api/camera-enhancer.html#setresolution" target="_blank">`setResolution`</a> method.
122122

123123
### Define the Scan Region
124124

125125
Using DCE, you can specify the scan region so that the SDK only works with a specific area of the image or frame. The video frames will be cropped before barcode decoding so that the barcode reader will ignore the areas that are of no interest to the decoding process, thus resulting in faster and more accurate results.
126126

127127
**Recommendation**
128128

129-
You can specify the scan region via the DCE method [`setScanRegion`](https://www.dynamsoft.com/camera-enhancer/docs/mobile/programming/android/primary-api/camera-enhancer.html#setscanregion).
129+
You can specify the scan region via the DCE method <a href="https://www.dynamsoft.com/camera-enhancer/docs/mobile/programming/android/primary-api/camera-enhancer.html#setscanregion" target="_blank">`setScanRegion`</a>.
130130

131131
## Summary
132132

performance/index-v9.6.30.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ description: This is the Performance Optimization index page for Dynamsoft Barco
55
keywords: performance optimization
66
breadcrumbText: Performance
77
needGenerateH3Content: false
8-
permalink: /performance/index.html
8+
permalink: /performance/index-v9.6.30.html
99
---
1010

1111
# Performance Optimization
1212

1313
This section covers the following topics:
1414

1515
* [How to Boost Barcode Reading Speed](speed.md)
16-
* [How to Boost Barcode Read Rate](read-rate.md)
1716
* [How to Boost Barcode Reading Accuracy](accuracy.md)
17+
* [How to Boost Barcode Read Rate](read-rate.md)
1818
* [How to Batch Test Barcode Reading Performance]({{ site.comparison_tools}}batch-test.html)

performance/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ description: This is the Performance Optimization index page for Dynamsoft Barco
55
keywords: performance optimization
66
breadcrumbText: Performance
77
needGenerateH3Content: false
8-
permalink: /performance/index-v9.6.30.html
8+
permalink: /performance/index.html
99
---
1010

1111
# Performance Optimization
1212

1313
This section covers the following topics:
1414

1515
* [How to Boost Barcode Reading Speed](speed.md)
16-
* [How to Boost Barcode Read Rate](read-rate.md)
1716
* [How to Boost Barcode Reading Accuracy](accuracy.md)
17+
* [How to Boost Barcode Read Rate](read-rate.md)

performance/speed.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ For interactive barcode reading from a video input, you get better speed if:
104104
* the video frames are trimmed around the barcode(s) before submitted for barcode reading;
105105
* the video frames are provided in a way that reduces the waiting time of the barcode reading engine.
106106

107-
The [Dynamsoft Camera Enhancer SDK](https://www.dynamsoft.com/camera-enhancer/docs/core/introduction/) (DCE) is designed to do all the above like this:
107+
The <a href="https://www.dynamsoft.com/camera-enhancer/docs/core/introduction/" target="_blank">Dynamsoft Camera Enhancer SDK</a> (DCE) is designed to do all the above like this:
108108

109109

110110
* it comes with camera control and is able to find and open the best suited camera by default (with support for manual adjustment too);

0 commit comments

Comments
 (0)