add note about non-determinism in stats
added a note to the docs for max/min/stats about non-determinism in the results if there are many maxima/minima thanks Mark
This commit is contained in:
parent
61d9f03ef8
commit
fb544e3f25
@ -510,6 +510,10 @@ vips_max_init( VipsMax *max )
|
|||||||
* @out_array, @x_array and @y_array. These values are returned sorted from
|
* @out_array, @x_array and @y_array. These values are returned sorted from
|
||||||
* largest to smallest.
|
* largest to smallest.
|
||||||
*
|
*
|
||||||
|
* If there are more than @size maxima, the maxima returned will be a random
|
||||||
|
* selection of the maxima in the image. Equal maxima will be returned in a
|
||||||
|
* random order.
|
||||||
|
*
|
||||||
* See also: vips_min(), vips_stats().
|
* See also: vips_min(), vips_stats().
|
||||||
*
|
*
|
||||||
* Returns: 0 on success, -1 on error
|
* Returns: 0 on success, -1 on error
|
||||||
|
@ -514,6 +514,10 @@ vips_min_init( VipsMin *min )
|
|||||||
* These values are returned sorted from
|
* These values are returned sorted from
|
||||||
* smallest to largest.
|
* smallest to largest.
|
||||||
*
|
*
|
||||||
|
* If there are more than @size minima, the minima returned will be a random
|
||||||
|
* selection of the minima in the image. Equal minima will be returned in a
|
||||||
|
* random order.
|
||||||
|
*
|
||||||
* See also: vips_min(), vips_stats().
|
* See also: vips_min(), vips_stats().
|
||||||
*
|
*
|
||||||
* Returns: 0 on success, -1 on error
|
* Returns: 0 on success, -1 on error
|
||||||
|
@ -445,6 +445,9 @@ vips_stats_init( VipsStats *stats )
|
|||||||
* Row 0 has statistics for all
|
* Row 0 has statistics for all
|
||||||
* bands together, row 1 has stats for band 1, and so on.
|
* bands together, row 1 has stats for band 1, and so on.
|
||||||
*
|
*
|
||||||
|
* If there is more than one maxima or minima, one of them will be chosen at
|
||||||
|
* random.
|
||||||
|
*
|
||||||
* See also: vips_avg(), vips_min().
|
* See also: vips_avg(), vips_min().
|
||||||
*
|
*
|
||||||
* Returns: 0 on success, -1 on error
|
* Returns: 0 on success, -1 on error
|
||||||
|
Loading…
Reference in New Issue
Block a user