]> gitweb.factorcode.org Git - factor.git/blob - extra/images/processing/rotation/rotation-tests.factor
Switch to https urls
[factor.git] / extra / images / processing / rotation / rotation-tests.factor
1 ! Copyright (C) 2009 Kobi Lurie, Doug Coleman.
2 ! See https://factorcode.org/license.txt for BSD license.
3 USING: accessors fry images.loader
4 images.processing.rotation kernel literals math sequences
5 tools.test images.processing.rotation.private ;
6 IN: images.processing.rotation.tests
7
8 : first-row ( seq^2 -- seq ) first ;
9 : first-col ( seq^2 -- item ) harvest [ first ] map ;
10 : last-row ( seq^2 -- item ) last ;
11 : last-col ( seq^2 -- item ) harvest [ last ] map ;
12 : end-of-first-row ( seq^2 -- item ) first-row last ;
13 : first-of-first-row ( seq^2 -- item ) first-row first ;
14 : end-of-last-row ( seq^2 -- item ) last-row last ;
15 : first-of-last-row ( seq^2 -- item ) last-row first ;
16
17 <<
18
19 : clone-image ( image -- new-image )
20     clone [ clone ] change-bitmap ;
21
22 >>
23
24 : pasted-image ( -- image )
25     "vocab:images/processing/rotation/test-bitmaps/PastedImage.bmp"
26     load-image ;
27
28 : pasted-image90 ( -- image )
29     "vocab:images/processing/rotation/test-bitmaps/PastedImage90.bmp"
30     load-image ;
31
32 : lake-image ( -- image )
33     "vocab:images/processing/rotation/test-bitmaps/lake.bmp"
34     load-image image>pixel-rows ;
35
36 ! XXX: disabling temporarily
37 USE: system
38 os linux? [
39     [ t ] [ pasted-image dup clone-image 4 [ 90 rotate ] times = ] unit-test
40     [ t ] [ pasted-image dup clone-image 2 [ 180 rotate ] times = ] unit-test
41     [ t ] [ pasted-image dup clone-image 270 rotate 90 rotate = ] unit-test
42     [ t ] [
43         pasted-image dup clone-image dup { 90 180 90 } [ rotate drop ] with each =
44     ] unit-test
45
46     [ t ] [
47         pasted-image 90 rotate
48         pasted-image90 = 
49     ] unit-test
50
51     [ t ] [
52         "vocab:images/processing/rotation/test-bitmaps/small.bmp"
53         load-image 90 rotate
54         "vocab:images/processing/rotation/test-bitmaps/small-rotated.bmp"
55         load-image =
56     ] unit-test
57 ] unless
58
59 [ t ] [
60     lake-image
61     [ first-of-first-row ]
62     [ 90 (rotate) end-of-first-row ] bi =
63 ] unit-test
64
65 [ t ]
66 [ lake-image [ first-row ] [ 90 (rotate) last-col ] bi = ] unit-test
67
68 [ t ]
69 [ lake-image [ last-col ] [ 90 (rotate) last-row reverse ] bi = ] unit-test
70
71 [ t ]
72 [ lake-image [ last-row ] [ 90 (rotate) first-col ] bi = ] unit-test
73
74 [ t ]
75 [ lake-image [ first-col ] [ 90 (rotate) first-row reverse ] bi = ] unit-test