Pillow/Tests/bench_get.py

22 lines
378 B
Python
Raw Normal View History

import helper
import timeit
2015-08-25 15:27:18 +03:00
import sys
sys.path.insert(0, ".")
def bench(mode):
2014-09-05 13:36:24 +04:00
im = helper.hopper(mode)
get = im.im.getpixel
xy = 50, 50 # position shouldn't really matter
t0 = timeit.default_timer()
2015-04-08 14:12:37 +03:00
for _ in range(1000000):
get(xy)
print(mode, timeit.default_timer() - t0, "us")
bench("L")
bench("I")
bench("I;16")
bench("F")
bench("RGB")