ok, clipart is working. Better notify grem
This commit is contained in:
parent
6871bbf07c
commit
fa6cad34b7
|
@ -35,7 +35,6 @@
|
||||||
|
|
||||||
(define (color-connected-points! imgvec width height start-color destination-color tolerance it)
|
(define (color-connected-points! imgvec width height start-color destination-color tolerance it)
|
||||||
(let ((mycol (vector-ref imgvec it)))
|
(let ((mycol (vector-ref imgvec it)))
|
||||||
(printf "~a ~a\n" mycol it)
|
|
||||||
(when (and (not (color=? mycol destination-color))
|
(when (and (not (color=? mycol destination-color))
|
||||||
(color-near? mycol start-color tolerance))
|
(color-near? mycol start-color tolerance))
|
||||||
(begin
|
(begin
|
||||||
|
@ -116,20 +115,8 @@
|
||||||
;(define D (overlay XDOG BG))
|
;(define D (overlay XDOG BG))
|
||||||
;(define CDOG (overlay (clipart/url DOGURL) BG))
|
;(define CDOG (overlay (clipart/url DOGURL) BG))
|
||||||
;D
|
;D
|
||||||
(image-width DOG)
|
|
||||||
(image-height DOG)
|
|
||||||
|
|
||||||
|
|
||||||
(define colors (image->color-list DOG))
|
|
||||||
(displayln (length colors))
|
|
||||||
(andmap color? colors)
|
|
||||||
(define vec (list->vector colors))
|
|
||||||
(vector-length vec)
|
|
||||||
(let loop ([i 0])
|
|
||||||
(when (< i (vector-length vec))
|
|
||||||
(unless (color? (vector-ref vec i))
|
|
||||||
(error 'something-went-wrong))
|
|
||||||
(loop (add1 i))))
|
|
||||||
|
|
||||||
|
|
||||||
(define (repeat num thunk)
|
(define (repeat num thunk)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user