摘要: get_id(title){ WinGet, var_id, List, %title% ;窗口标题 idlist := [] loop, %var_id%{ idlist.Push(var_id%A_Index%) } If (!var_id){ MsgBox, 无匹配窗口 } Return id 阅读全文
posted @ 2022-10-14 09:10 c/ 阅读(34) 评论(0) 推荐(0) 编辑
摘要: IniRead, bit, myfile.ini, section, key_bit IniRead, times, myfile.ini, section, key_times SetRegView %bit% RegRead, OutputVar2, HKEY_LOCAL_MACHINE\SOF 阅读全文
posted @ 2022-10-14 09:10 c/ 阅读(107) 评论(0) 推荐(0) 编辑
摘要: var1 := "" ; 赋值为空, 这样下面将会使用当前时间戳代替. var1 += 1, days var1 := SubStr(var1, 1, 8) tommorrow := var1 0700 ;MsgBox % tommorrow EnvSub, tommorrow, %A_Now%, 阅读全文
posted @ 2022-10-14 09:08 c/ 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 3是台式机,10是笔记本,其他的看链接。 https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-systemenclosure?redirectedfrom=MSDN type := cmdSilenceReturn(" 阅读全文
posted @ 2022-10-12 13:05 c/ 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 主要就是一个cmd命令,重启资源管理器 rem @echo off taskkill /f /im explorer.exe explorer.exe ahk代码: RunWaitMany(" ( rem @echo off taskkill /f /im explorer.exe explorer 阅读全文
posted @ 2022-10-12 11:14 c/ 阅读(306) 评论(0) 推荐(0) 编辑
摘要: #NoEnv #Include opencv_ahk_lib.ahk SendMode Input SetWorkingDir %A_ScriptDir% hOpencv := DllCall("LoadLibrary", "str", "opencv_world455.dll", "ptr") h 阅读全文
posted @ 2022-10-12 11:12 c/ 阅读(62) 评论(0) 推荐(0) 编辑
摘要: https://www.autohotkey.com/board/topic/64696-some-code-arduinoahk-beta-01/ Arduino.ahk #include %A_ScriptDir%\Serial.ahk ; Arduino AHK Library arduino 阅读全文
posted @ 2022-10-12 11:11 c/ 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 本文默认已安装autohotkey。 1.下载vscode安装包 https://code.visualstudio.com/Download 2.开始安装 安装好之后打开是英文界面,先安装一个中文插件,安装好之后会提示重启ide,点击重启就行。 接下来安装autohotkey插件,跟上面一样的操作 阅读全文
posted @ 2022-10-12 11:07 c/ 阅读(1889) 评论(0) 推荐(0) 编辑
摘要: 什么是轮廓? 轮廓可以简单地解释为连接具有相同颜色或强度的所有连续点(沿边界)的曲线。轮廓是用于形状分析以及对象检测和识别的有用工具。 为了获得更高的准确性,请使用二进制图像。因此,在找到轮廓之前,请应用阈值或 Canny 边缘检测。 从OpenCV 3.2开始,**findContours()** 阅读全文
posted @ 2022-10-12 11:03 c/ 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 图像金字塔是指一组图像且不同分辨率的子图集合,它是图像多尺度表达的一种,以多分辨率来解释图像的结构,主要用于图像的分割或压缩。一幅图像的金字塔是一系列以金字塔性质排列的分辨率逐步降低,且来源于同一张原始图的图像集合,如下图所示,它包括了五层图像,将这一层一层的图像比喻成金字塔。图像金字塔可以通过梯次 阅读全文
posted @ 2022-10-12 10:53 c/ 阅读(136) 评论(0) 推荐(0) 编辑