module CrImage::Map(T)

Overview

An interface for 2 dimensional data. Used for various masking and correlation methods.

Direct including types

Defined in:

cr-image/map.cr

Instance Method Summary

Instance Method Detail

abstract def [](x : Int32, y : Int32) : T #

[View source]
abstract def [](index : Int32) : T #

[View source]
abstract def []?(x : Int32, y : Int32) : T | Nil #

[View source]
abstract def []?(index : Int32) : T | Nil #

[View source]
abstract def height : Int32 #

[View source]
abstract def shape : Tuple(Int32, Int32) #

[View source]
abstract def size : Int32 #

[View source]
abstract def width : Int32 #

[View source]