Skip to content

Commit aadbb84

Browse files
authored
Merge pull request #154 from shelllet/dev
Dev
2 parents e09df1d + 4bf41a6 commit aadbb84

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+145
-108
lines changed

algorithm/AccessArray.simple

25 Bytes
Binary file not shown.

algorithm/AccessKey.simple

10 Bytes
Binary file not shown.

algorithm/CalculateCenter.simple

62 Bytes
Binary file not shown.

docx/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# [0.39](https://github.com/shelllet/winui/compare/main...dev) (2024-09-30)
2+
3+
### Changed:
4+
1. 修复动作分组隐藏问题。
5+
2. 修复一些其它崩溃问题。
6+
3. 调整部分 *UI* 界面。
7+
4. [颜色统计](./actions/algorithm/ColorPercentage.md),运行时参数 *差值* 变更为 *HSV* 三个分量的差值。
8+
9+
### Note
10+
11+
1. 使用管理员权限运行 *winui++*, 无法显示 *动作* 的拖动效果(已知问题)。
12+
2. 64位下载(x64):https://bitbucket.org/winui-release/version/downloads/winui0.39.0-setup.x64.exe
13+
114
# [0.38](https://github.com/shelllet/winui/compare/main...dev) (2024-09-06)
215

316
### Changed:

docx/_sidebar.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
- [动作](./actions/README.md)
2222
- 系统
2323
- [等待](./actions/system/Wait.md)
24-
- [启动应用程序](./actions/system/StartProcess.md)
24+
- [启动应用](./actions/system/StartProcess.md)
2525
- [添加用户](./actions/system/UserAdd.md)
2626
- [打开应用](./actions/system/OpenApplication.md)
2727
- [打开文件](./actions/system/LaunchFile.md)
@@ -118,15 +118,16 @@
118118
- [特征匹配](./actions/detection/FeatureDetect.md)
119119
- [模板匹配](./actions/detection/MatchTemplate.md)
120120
- [查找轮廓](./actions/detection/FindContours.md)
121+
- [颜色辨识](./actions/detection/ImageColorDiscrimination.md)
121122
- 绘图
122123
- [绘制矩形](./actions/draw/DrawRect.md)
123124
- [填充颜色](./actions/draw/FillColor.md)
124125
- 深度学习
125-
- [目标分类](./actions/dnn/ImageClassification.md)
126-
- [对象检测](./actions/dnn/ObjectDetection.md)
127-
- [中文识别](./actions/dnn/TextChinese.md)
128-
- [文本块检测](./actions/dnn/TextDetection.md)
129-
- [二维码识别](./actions/dnn/QRCode.md)
126+
- [目标分类](./actions/ai/ImageClassification.md)
127+
- [对象检测](./actions/ai/ObjectDetection.md)
128+
- [中文识别](./actions/ai/TextChinese.md)
129+
- [文本块检测](./actions/ai/TextDetection.md)
130+
- [二维码识别](./actions/ai/QRCode.md)
130131
- 媒体
131132
- [窗口截图](./actions/media/CaptureWindow.md)
132133
- [全屏截图](./actions/media/CaptureFullScreen.md)
@@ -227,7 +228,8 @@
227228
- [分组](./actions/control/GroupAction.md)
228229
- 算法
229230
- [分割字符串](./actions/algorithm/SplitString.md)
230-
- [非零图像](./actions/algorithm/ImageIsColored.md)
231+
- [合并字符串](./actions/algorithm/JoinString.md)
232+
- [提取子串](./actions/algorithm/SubString.md)
231233
- [访问数组](./actions/algorithm/AccessArray.md)
232234
- [访问对象](./actions/algorithm/AccessKey.md)
233235
- [数组长度](./actions/algorithm/ArraySize.md)
@@ -238,12 +240,10 @@
238240
- [周长筛选](./actions/algorithm/FilterPerimeter.md)
239241
- [形状筛选](./actions/algorithm/FilterVertex.md)
240242
- [椭圆筛选](./actions/algorithm/FilterEllipse.md)
241-
- [随机数](./actions/algorithm/RandomNumber.md)
243+
- [随机数字](./actions/algorithm/RandomNumber.md)
242244
- [随机坐标](./actions/algorithm/RandomPoint.md)
243245
- [图像差值](./actions/algorithm/ImageDifference.md)
244246
- [颜色统计](./actions/algorithm/ColorPercentage.md)
245-
- [合并字符串](./actions/algorithm/JoinString.md)
246-
- [提取子串](./actions/algorithm/SubString.md)
247247
- [添加元素](./actions/algorithm/PushBack.md)
248248
- [删除元素](./actions/algorithm/PopBack.md)
249249
- 类型
@@ -286,7 +286,7 @@
286286
- [主机地址](./types/HostAddress.md)
287287
- [元组](./types/Tuple.md)
288288
- 枚举类型
289-
- [ThresholdTypes](./enums/ThresholdTypes.md)
289+
- [Colors](./enums/Colors.md)
290290
- [Directions](./enums/Directions.md)
291291
- [ColorConversionCodes](./enums/ColorConversionCodes.md)
292292
- [ContourShape](./enums/ContourShape.md)
File renamed without changes.
File renamed without changes.
Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,7 @@
2222
2323
## 输出
2424

25-
> 识别结果, 参考 [`RecognitionResults`](./types/RecognitionResults.md)
26-
27-
28-
## 脚本调用
29-
30-
```python
31-
import simple;
32-
33-
34-
```
25+
> 识别结果, 参考: [`RecognitionResults`](./types/RecognitionResult.md)
3526
3627
### 其它
3728

File renamed without changes.

0 commit comments

Comments
 (0)