Sha256: ed9189bc3570b9c644063eac7e0254a35ca972635e8225aae1f3e68b79850b91

Contents?: true

Size: 432 Bytes

Versions: 38

Compression:

Stored size: 432 Bytes

Contents

#! /usr/local/bin/ruby -w
require 'RMagick'

# Demonstrate the Image#adaptive_threshold method

img = Magick::Image.read("images/Flower_Hat.jpg").first

begin
    result = img.adaptive_threshold

# Substitute the standard "Not Implemented" image
rescue NotImplementedError
    result = Magick::Image.read("images/notimplemented.gif").first
    result.resize!(img.columns, img.rows)
end

result.write("adaptive_threshold.jpg")
exit

Version data entries

38 entries across 38 versions & 1 rubygems

Version Path
rmagick-1.10.0 doc/ex/adaptive_threshold.rb
rmagick-1.10.1 doc/ex/adaptive_threshold.rb
rmagick-1.11.0 doc/ex/adaptive_threshold.rb
rmagick-1.11.1 doc/ex/adaptive_threshold.rb
rmagick-1.13.0 doc/ex/adaptive_threshold.rb
rmagick-1.12.0 doc/ex/adaptive_threshold.rb
rmagick-1.15.0 doc/ex/adaptive_threshold.rb
rmagick-1.15.10 doc/ex/adaptive_threshold.rb
rmagick-1.14.0 doc/ex/adaptive_threshold.rb
rmagick-1.14.1 doc/ex/adaptive_threshold.rb
rmagick-1.15.1 doc/ex/adaptive_threshold.rb
rmagick-1.15.13 doc/ex/adaptive_threshold.rb
rmagick-1.15.15 doc/ex/adaptive_threshold.rb
rmagick-1.15.11 doc/ex/adaptive_threshold.rb
rmagick-1.15.12 doc/ex/adaptive_threshold.rb
rmagick-1.15.14 doc/ex/adaptive_threshold.rb
rmagick-1.15.2 doc/ex/adaptive_threshold.rb
rmagick-1.15.4 doc/ex/adaptive_threshold.rb
rmagick-1.15.16 doc/ex/adaptive_threshold.rb
rmagick-1.15.17 doc/ex/adaptive_threshold.rb