ENH: Add motion blurred clock image.

This commit is contained in:
Stefan van der Walt
2012-10-24 14:21:47 -07:00
parent c135920ee3
commit 6c5b40302d
3 changed files with 18 additions and 0 deletions
+13
View File
@@ -114,3 +114,16 @@ def page():
"""
return load("page.png")
def clock():
"""Motion blurred clock.
This photograph of a wall clock was taken while moving the camera in an
aproximately horizontal direction. It may be used to illustrate
inverse filters and deconvolution.
Released into the public domain by the photographer (Stefan van der Walt).
"""
return load("clock_motion.png")
Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

+5
View File
@@ -34,6 +34,11 @@ def test_page():
data.page()
def test_page():
""" Test that "clock" image can be loaded. """
data.clock()
if __name__ == "__main__":
from numpy.testing import run_module_suite
run_module_suite()