-
Notifications
You must be signed in to change notification settings - Fork 0
/
ruby_manor_3.rb
74 lines (53 loc) · 1.51 KB
/
ruby_manor_3.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# Ruby Manor 3
class RubyManor3 < Processing::App
load_library :video
# We need the video classes to be included here.
include_package "processing.video"
attr_accessor :capture, :sample_rate
def setup
frame_rate 12
smooth
size(800, 600)
no_stroke
@sample_rate = 10
# You can get a list of cameras
# by doing Capture.list
#
#
# or you can use your default
# webcam by leaving it out of
# the parameters ..
#
# camera = "Sony Eye Toy (2)"
# @capture = Capture.new(self, width, height, camera, 30)
@capture = Capture.new(self, width, height, 30)
end
def draw
capture.read if capture.available
convert_pixels
end
def clear
background 255
no_stroke
ellipse_mode(CORNER)
end
def convert_pixels
clear
(1...height).step(sample_rate) do |y|
(1...width).step(sample_rate) do |x|
pixel = y * capture.width + x
r = red(capture.pixels[pixel])
g = green(capture.pixels[pixel])
b = blue(capture.pixels[pixel])
# e_width = map(saturation(capture.pixels[pixel]), 0, 255, 0, 30)
e_width = map(brightness(capture.pixels[pixel]), 0, 255, 0, 20)
# e_width = map(red(capture.pixels[pixel]), 0, 255, 0, 20)
fill(r, g, b, 255)
ellipse(x, y, e_width, e_width)
# rect(x, y, e_width, e_width)
end
end
capture.update_pixels
end
end
RubyManor3.new :title => "Ruby Manor 3"