C#是否有类似PixelSearch的东西?但是以这样的方式,形状差异(来自屏幕分辨率的差异)仍然具有图片匹配度。这是一个AutoIt 0
的示例。
我需要找到一张照片。我的程序可以运行,但是在其他台式机上找不到图片,因为屏幕分辨率不同。
我的代码运行良好(除了提到的问题):
<Query>
<Where>
<Or>
<And>
<Leq>
<FieldRef Name="EventDate"/>
<Value IncludeTimeValue='TRUE' Type='DateTime'>2018-07-01T00:00:00Z</Value>
</Leq>
<Geq>
<FieldRef Name="EndDate"/>
<Value IncludeTimeValue='TRUE' Type='DateTime'>2018-07-01T00:00:00Z</Value>
</Geq>
</And>
<And>
<Leq>
<FieldRef Name="EventDate"/>
<Value IncludeTimeValue='TRUE' Type='DateTime'>2018-07-01T00:00:00Z</Value>
</Leq>
<Leq>
<FieldRef Name="EndDate"/>
<Value IncludeTimeValue='TRUE' Type='DateTime'>2018-07-01T23:59:59Z</Value>
</Leq>
</And>
</Or>
</Where>
</Query>