1mlib_ImageAve_Fp_Inp(3MLIB)mediaLib Library Functionsmlib_ImageAve_Fp_Inp(3MLIB)
2
3
4
6 mlib_ImageAve_Fp_Inp - average of two images, in place
7
9 cc [ flag... ] file... -lmlib [ library... ]
10 #include <mlib.h>
11
12 mlib_status mlib_ImageAve_Fp_Inp(mlib_image *src1dst,
13 const mlib_image *src2);
14
15
17 The mlib_ImageAve_Fp_Inp() function computes the average of two float‐
18 ing-point images on a pixel-by-pixel basis, in place.
19
20
21 It uses the following equation:
22
23 src1dst[x][y][i] = (src1dst[x][y][i] + src2[x][y][i]) / 2
24
25
27 The function takes the following arguments:
28
29 src1dst Pointer to first source and destination image.
30
31
32 src2 Pointer to second source image.
33
34
36 The function returns MLIB_SUCCESS if successful. Otherwise it returns
37 MLIB_FAILURE.
38
40 See attributes(5) for descriptions of the following attributes:
41
42
43
44
45 ┌─────────────────────────────┬─────────────────────────────┐
46 │ ATTRIBUTE TYPE │ ATTRIBUTE VALUE │
47 ├─────────────────────────────┼─────────────────────────────┤
48 │Interface Stability │Committed │
49 ├─────────────────────────────┼─────────────────────────────┤
50 │MT-Level │MT-Safe │
51 └─────────────────────────────┴─────────────────────────────┘
52
54 mlib_ImageAve(3MLIB), mlib_ImageAve_Fp(3MLIB),
55 mlib_ImageAve_Inp(3MLIB), attributes(5)
56
57
58
59SunOS 5.11 2 Mar 2007 mlib_ImageAve_Fp_Inp(3MLIB)