Method

VipsImagemedian

Declaration [src]

int
vips_median (
  VipsImage* in,
  VipsImage** out,
  int size,
  ...
)

Description [src]

A convenience function equivalent to:

vips_rank(in, out, size, size, (size * size) / 2);

::: seealso vips_rank().

Parameters

out VipsImage
 

Output image.

 The argument will be set by the function.
 The instance takes ownership of the data, and is responsible for freeing it.
size int
 

Size of region.

... none
 

NULL-terminated list of optional named arguments.

Return value

Returns: int
 

0 on success, -1 on error.