python
##python --100次找色用时92120毫秒
from airscript.screen import FindColors
from time import time
t1=time()
for i in range(100):
p=FindColors("888,888,#000000").rect(0,0,1080,2400).find()
t2=time()
print(f'用时{round((t2-t1)*1000)}毫秒')# 用时92120毫秒
##结论:python语言性能不适合在移动端做图色模拟开发
lua
--lua --100次找色用时3217毫秒
t1=time()
for i=1,100,1 do
p=findColor({0,0,1080,2400,"888,888,#000000",95})
end
t2=time()
print("用时"..(t2-t1).."毫秒")-- 用时3217毫秒
--结论:python语言性能不适合在移动端做图色模拟开发