Class: Hornetseye::FLOAT_

Inherits:
Element show all
Defined in:
docs/multiarray/lib/multiarray/float.rb

Overview

Class for representing native floating point numbers

Class Method Summary collapse

Methods inherited from Element

fetch, #initialize

Methods inherited from Node

#<=>, ===, #[], #[]=, #allocate, #b=, #b_with_decompose, #basetype, #between?, bool, #check_shape, #clip, coercion_bool, coercion_byte, coercion_maxint, #collect, #components, cond, #conditional, #convolve, #decompose, #dilate, dimension, #dimension, #downsample, #dup, #each, #empty?, #eq_with_multiarray, #erode, #fill!, #flip, float_scalar, floating, #fmod_with_float, #g=, #g_with_decompose, #gauss_blur, #gauss_gradient, #height, #histogram, #histogram_with_rgb, #if, #if_else, #imag=, #imag_with_decompose, indgen, #inject, #inspect, #integral, #lut, #lut_with_rgb, #mask, #matched?, #max, #mean, #memorise, #memory, #min, #normalise, #orig_to_cvmat, #orig_to_type_with_frame, #prod, #r=, #r_with_decompose, #range, #real=, #real_with_decompose, #reshape, rgb?, #rgb?, #roll, #save_dfloat, #save_dfloatrgb, #save_magick, #save_openexr, #save_sfloat, #save_sfloatrgb, #save_ubyte, #save_ubytergb, #save_uint, #save_uintrgb, #save_usint, #save_usintrgb, scalar, shape, #shape, #shift, #show, #size, #sobel, #stretch, #sum, #swap_rgb_with_scalar, #to_a, #to_cvmat, #to_magick, #to_narray, to_type, #to_type, #to_type_with_frame, #to_type_with_identity, #to_type_with_rgb, #transpose, typecode, #typecode, #unmask, #unroll, #warp, #width

Constructor Details

This class inherits a constructor from Hornetseye::Element

Class Method Details

.==(other) ⇒ Boolean

Test equality of classes

Parameters:

  • other (Object)

    Object to compare with.

Returns:

  • (Boolean)

    Boolean indicating whether classes are equal.



140
141
142
# File 'docs/multiarray/lib/multiarray/float.rb', line 140

def ==( other )
  other.is_a? Class and other < FLOAT_ and double == other.double
end

.inherit(double) ⇒ Object



32
33
34
35
36
# File 'docs/multiarray/lib/multiarray/float.rb', line 32

def inherit(double)
  retval = Class.new self
  retval.double = double
  retval
end

.inspectString

Return string with information about this class

Returns:

  • (String)

    Returns a string (e.g. “SFLOAT”).



120
121
122
# File 'docs/multiarray/lib/multiarray/float.rb', line 120

def inspect
  "#{ double ? 'D' : 'S' }FLOAT"
end