-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
102 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# 删除元素 | ||
删除容器中的最后一个元素。 | ||
删除容器当中的最后一个元素。 | ||
|
||
![PopBack](./images/20.png ':size=90%') | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# 颜色辨识 | ||
|
||
辨别图像的颜色是否为指定颜色。 | ||
|
||
![ImageColorDiscrimination](./images/09.png ':size=90%') | ||
|
||
## 子流程 | ||
|
||
> 不支持 | ||
## 运行参数 | ||
|
||
* 图像 | ||
> 待辨识的图像,一般使用纯色图像辨识。 | ||
* 颜色 | ||
> 参考:[Colors](./enums/Colors.md)。注意:`RED`(红色) 和 `BLUE`(蓝色)使用 *BGR* 颜色模式。 | ||
## 输出 | ||
|
||
> 参考:[Boolean](./types/Boolean.md), 图像符合指定的颜色走左边分支流程,否则走右边流程分支。 | ||
|
||
|
||
## 其它 | ||
|
||
示例: https://github.com/shelllet/WinUi/blob/main/algorithm/ImageIsColored.simple |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# 启动应用程序 | ||
# 启动应用 | ||
|
||
启动应用程序,并等待程序结束。 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Colors | ||
|
||
* BLACK | ||
> 黑色,*RGB* 颜色值(0, 0, 0) | ||
* WHITE | ||
> 白色,*RGB* 颜色值(255, 255, 255) | ||
* RED | ||
> 红色,*RGB* 颜色值(255, 0, 0);*BGR* 颜色值(0, 0, 255)。 | ||
* GREEN | ||
> 绿色,*RGB* 颜色值(0, 255, 0) | ||
* BLUE | ||
> 蓝色,*RGB* 颜色值(0, 0, 255);*BGR* 颜色值(255, 0, 0)。 |