1mlib_ImageSub2_Fp_Inp(3MLIBm)ediaLib Library Functionmslib_ImageSub2_Fp_Inp(3MLIB)
2
3
4
6 mlib_ImageSub2_Fp_Inp - subtraction, in place
7
9 cc [ flag... ] file... -lmlib [ library... ]
10 #include <mlib.h>
11
12 mlib_status mlib_ImageSub2_Fp_Inp(mlib_image *src2dst,
13 const mlib_image *src1);
14
15
17 The mlib_ImageSub2_Fp_Inp() function subtracts the second floating-
18 point source image from the first floating-point source image on a
19 pixel-by-pixel basis, in place.
20
21
22 It uses the following equation:
23
24 src2dst[x][y][i] = src1[x][y][i] - src2dst[x][y][i]
25
26
28 The function takes the following arguments:
29
30 src2dst Pointer to second source and destination image.
31
32
33 src1 Pointer to first source image.
34
35
37 The function returns MLIB_SUCCESS if successful. Otherwise it returns
38 MLIB_FAILURE.
39
41 See attributes(5) for descriptions of the following attributes:
42
43
44
45
46 ┌─────────────────────────────┬─────────────────────────────┐
47 │ ATTRIBUTE TYPE │ ATTRIBUTE VALUE │
48 ├─────────────────────────────┼─────────────────────────────┤
49 │Interface Stability │Committed │
50 ├─────────────────────────────┼─────────────────────────────┤
51 │MT-Level │MT-Safe │
52 └─────────────────────────────┴─────────────────────────────┘
53
55 mlib_ImageSub(3MLIB), mlib_ImageSub_Fp(3MLIB), mlib_Image‐
56 Sub1_Fp_Inp(3MLIB), mlib_ImageSub1_Inp(3MLIB), mlib_Image‐
57 Sub2_Inp(3MLIB), attributes(5)
58
59
60
61SunOS 5.11 2 Mar 2007 mlib_ImageSub2_Fp_Inp(3MLIB)