Skip to content

Instantly share code, notes, and snippets.

@dannvix
Created March 22, 2012 08:10
Show Gist options
  • Save dannvix/2157015 to your computer and use it in GitHub Desktop.
Save dannvix/2157015 to your computer and use it in GitHub Desktop.
Sobel filter with RMagick
class Sobel
require 'RMagick'
include Magick
@@kernels = {
:up => [1, 2, 1, 0, 0, 0, -1, -2, -1],
:down => [-1, -2, -1, 0, 0, 0, 1, 2, 1],
:left => [1, 0, -1, 2, 0, -2, 1, 0, -1],
:right => [-1, 0, 1, -2, 0, 2, -1, 0, 1]
}
def self.apply (source, type=:all)
result = source.dup.quantize(256, GRAYColorspace)
vertical = lambda { result = result.convolve(3, @@kernels[:up]).convolve(3, @@kernels[:down]) }
horizental = lambda { result = result.convolve(3, @@kernels[:left]).convolve(3, @@kernels[:right]) }
case type
when :all
vertical.call
horizental.call
when :vertical
vertical.call
when :horizental
horizental.call
end
result
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment