1mlib_ImageExp(3MLIB) mediaLib Library Functions mlib_ImageExp(3MLIB)
2
3
4
6 mlib_ImageExp - computes the exponent of the image pixels
7
9 cc [ flag... ] file... -lmlib [ library... ]
10 #include <mlib.h>
11
12 mlib_status mlib_ImageExp(mlib_image *dst, const mlib_image *src);
13
14
16 The mlib_ImageExp() function computes the exponent of the image pixels.
17
18
19 It uses the following equation:
20
21 dst[x][y][i] = e**src[x][y][i]
22
23
25 The function takes the following arguments:
26
27 dst Pointer to destination image.
28
29
30 src Pointer to source image.
31
32
34 The function returns MLIB_SUCCESS if successful. Otherwise it returns
35 MLIB_FAILURE.
36
38 See attributes(5) for descriptions of the following attributes:
39
40
41
42
43 ┌─────────────────────────────┬─────────────────────────────┐
44 │ ATTRIBUTE TYPE │ ATTRIBUTE VALUE │
45 ├─────────────────────────────┼─────────────────────────────┤
46 │Interface Stability │Committed │
47 ├─────────────────────────────┼─────────────────────────────┤
48 │MT-Level │MT-Safe │
49 └─────────────────────────────┴─────────────────────────────┘
50
52 mlib_ImageExp_Fp(3MLIB), mlib_ImageExp_Fp_Inp(3MLIB), mlib_Image‐
53 Exp_Inp(3MLIB), attributes(5)
54
55
56
57SunOS 5.11 2 Mar 2007 mlib_ImageExp(3MLIB)