1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
|
" codeBody "
//the:
nietige pre_process_y (CImageY_Int* CImgY, double* lut_transform, int. param, CImageY_Int* CImgY_InOut)
{
int. w=CImgY->get_img_width ();
int. h=CImgY->get_img_height ();
int. i =0;
int. j =0;
niet ondertekend grijs klusje;
// leidt tot een cimagebuffer
niet ondertekend klusje *cimageDataPointer;
cimageDataPointer = CImgY->get_img_data ();
// leidt tot een cimagebuffer
niet ondertekend klusje *cimageDataPointer_inout;
cimageDataPointer_inout = CImgY_InOut->get_img_data ();
//copying van CImages
voor (niet ondertekend int. p=0; pget_img_height (); p++)
{
// geheugenexemplaar
memcpy (cimageDataPointer_inout, cimageDataPointer, CImgY->get_img_width () *1);
// cimageDataPointer sprong aan volgende lijn
cimageDataPointer = cimageDataPointer + CImgY->get_img_width () *1;
// cvImageDataPointer sprong aan volgende lijn
cimageDataPointer_inout = cimageDataPointer_inout+ (CImgY_InOut->get_img_width () *1);
}
voor (j=0; jget_pixel (I, j);
CImgY_InOut->set_pixel (I, j, lut_transform [grijs]);
}
}
}
//the rgb functie:
pre_process_rgb (CImageRGB_Int* CImgRGB, double* lut_transform, int. param, CImageRGB_Int* CImgRGB_InOut)
{
int. nb_channel =3;
int. w=CImgRGB->get_img_width ();
int. h=CImgRGB->get_img_height ();
int. i =0;
int. j =0;
int. k =0;
niet ondertekende lange kleur;
// leidt tot een cimagebuffer
niet ondertekend klusje *cimageDataPointer;
cimageDataPointer = CImgRGB->get_img_data ();
// leidt tot een cimagebuffer
niet ondertekend klusje *cimageDataPointer_inout;
cimageDataPointer_inout = CImgRGB_InOut->get_img_data ();
//copying van CImage aan het beeld van cv
voor (niet ondertekend int. p=0; pget_img_height (); p++)
{
// geheugenexemplaar
memcpy (cimageDataPointer_inout, cimageDataPointer, CImgRGB->get_img_width () *nb_channel);
// cimageDataPointer sprong aan volgende lijn
cimageDataPointer = cimageDataPointer + CImgRGB->get_img_width () *nb_channel;
// cvImageDataPointer sprong aan volgende lijn
cimageDataPointer_inout = cimageDataPointer_inout+ (CImgRGB_InOut->get_img_width () *nb_channel); //+nb_channel?
}
voor (j=0; jget_pixel (I, j);
//pCImgRGB- >set_pixel (0, 0, 0x080706);
CImgRGB_InOut->set_pixel (I, j, lut_transform [kleur]); //ERROR DE SCHENDING VAN DE TOEGANG
}
}
}
|