aboutsummaryrefslogtreecommitdiff
blob: a99b0f2242c71d5986e3c70e5249a2d1a6022182 (plain) (blame)
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
#include "dcp_core.h"

void Recover(IplImage *Result, IplImage *InputImage, double A[])
{
	double t0 = 0.1;
	double t, tmp_res;

	int i, j, k;
	int e = 0, number = 0;
	double a = 0;

	for (i = 1; i <= height; i++)
	{
		for (j = 1; j <= width; j++)
		{
			t = real_trans[e++];
			t /= 255.0;
			for (k = 0; k < 3; k++)
			{
				a = *(uchar *)(InputImage->imageData + (i - 1) * widthstep + (j - 1) * nch + k);
				a /= 255;

				tmp_res = ((a - A[k]) / MaxTwo(t, t0)) + A[k];

				real_recover[number++] = tmp_res;

				if (tmp_res > 1)
					tmp_res = 1;
				else if (tmp_res < 0)
					tmp_res = 0;

				*(uchar *)(Result->imageData + (i - 1) * widthstep + (j - 1) * nch + k) = tmp_res * 255.0;
			}
		}
	}
}
Powered by cgit v1.2.3 (git 2.41.0)