Bimage.ImageImage defines an image type and functions that manipulate images directly
type ('a, 'b, 'c) t = {width : int; |
height : int; |
color : 'c Color.t; |
ty : ( 'a, 'b ) Type.t; |
data : ( 'a, 'b ) Data.t; |
}Image type
v ty color width height makes a new image with the given ty, color and dimensions
of_data color width height data makes a new image from existing image data with the given ty, color, and dimensions
like img creates a new image with the same dimensions, color and ty as img
Create an image with the same dimensions and type
Create an image with the name dimensions and color
Copy pixels from one image to another
val channels : ( 'a, 'b, 'c ) t -> intReturns the number of channels in an image
val length : ( 'a, 'b, 'c ) t -> intReturns the number of values contained in an image
val shape : ( 'a, 'b, 'c ) t -> int * int * intReturns the width, height and channels
Convert an image to an existing image of another ty
Convert an image to a new image of another ty
val get : ( 'a, 'b, 'c ) t -> int -> int -> int -> 'aget image x y c returns a the value at (x, y, c)
val set : ( 'a, 'b, 'c ) t -> int -> int -> int -> 'a -> unitSet a single channel of the given image at (x, y)
val get_f : ( 'a, 'b, 'c ) t -> int -> int -> int -> floatget_f image x y c returns the normalized float value at (x, y, c)
val set_f : ( 'a, 'b, 'c ) t -> int -> int -> int -> float -> unitSet a single channel of the given image at (x, y) using a normalized float value
get_pixel image x y returns a pixel representation of image data at (x, y)
set_pixel image x y px sets the value of image at (x, y) to px
get_data image x y returns image data at (x, y)
set_data image x y px sets the value of image at (x, y) to px
val for_each :
( int -> int -> ( 'a, 'b ) Data.t -> unit ) ->
?x:int ->
?y:int ->
?width:int ->
?height:int ->
( 'a, 'b, 'c ) t ->
unitIterate over each pixel in an image, or a rectangle segment of an image specified by x, y, width, and height. The data segment used in the callback is mutable and will write directly to the underlying image data.
val for_each_pixel :
( int -> int -> 'c Pixel.t -> unit ) ->
?x:int ->
?y:int ->
?width:int ->
?height:int ->
( 'a, 'b, 'c ) t ->
unitIterate over each pixel in an image
val avg :
?x:int ->
?y:int ->
?width:int ->
?height:int ->
( 'a, 'b, 'c ) t ->
( float, Type.f64 ) Data.tGet the average pixel of an image or region of an image
Extract the sub-image specified by the given dimensions
val mean_std : ?channel:int -> ( 'a, 'b, 'c ) t -> float * floatCalculate the mean and standard deviation of an image
module Diff : sig ... end