Method: Vips::Image#minpos
- Defined in:
- lib/vips8/image.rb
permalink #minpos ⇒ Real
Return the coordinates of the image minimum.
1006 1007 1008 1009 1010 1011 |
# File 'lib/vips8/image.rb', line 1006 def minpos v, opts = min :x => true, :y => true x = opts['x'] y = opts['y'] return v, x, y end |