Created
September 21, 2011 23:05
-
-
Save rondale-sc/1233581 to your computer and use it in GitHub Desktop.
The hough transform in ruby. Only looks for straight black lines.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
begin | |
['oily_png', 'pp'].each do |g| | |
require g | |
end | |
rescue LoadError => e | |
puts "Could not load '#{e}'"; exit | |
end | |
class Hough | |
Convert = "/usr/local/bin/convert" | |
def initialize(image_path, options={}) | |
@verbose = options.delete(:verbose) | |
@image = ChunkyPNG::Image.from_file(image_path) | |
@image_path = image_path | |
end | |
def is_dark?(color) | |
ChunkyPNG::Color.r(color) + ChunkyPNG::Color.g(color) + ChunkyPNG::Color.b(color) < 40 | |
end | |
def is_light?(color) | |
ChunkyPNG::Color.r(color) + ChunkyPNG::Color.g(color) + ChunkyPNG::Color.b(color) > 600 | |
end | |
def angles(theta) | |
@angles ||= {} | |
@angles[theta] ||= {:cos => Math.cos(theta), :sin => Math.sin(theta)} | |
end | |
def get_hough_matrix | |
hough = Hash.new(0) | |
@image.height.times do |y| | |
@image.width.times do |x| | |
if is_dark?(@image[x,y]) && is_light?(@image[x,y + 1]) | |
(0..20).step(0.2).each do |theta| | |
distance = (x * angles(theta)[:cos] + y * angles(theta)[:sin]).to_i | |
hough[[theta, distance]] += 1 if distance >= 0 | |
end | |
end | |
end | |
end | |
return hough | |
end | |
def average_theta | |
at = (get_hough_matrix.sort_by {|k,v| v }.take(20).inject(0.0) {|m,v| m + v[0][0] } / 20) | |
pp "Average theta: #{at}" | |
return at | |
end | |
def rotate(output_path) | |
`#{Convert} #{@image_path} -rotate #{average_theta} #{output_path}` | |
end | |
end | |
if __FILE__ == $0 | |
output_path = "path/to/output" | |
image_path = "path/to/image" | |
h = Hough.new(image_path, :verbose => true) | |
h.rotate(output_path) | |
`open #{output_path}` | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ooh nice. This is just what I was looking for!
There is however a small bug, it sometimes tries accessing a coordinate out of bounds on line 35. So I've changed line 33 to read
(@image.height - 1).times do |y|
which has fixed it.