-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImageProcess.cpp
More file actions
60 lines (51 loc) · 1.69 KB
/
ImageProcess.cpp
File metadata and controls
60 lines (51 loc) · 1.69 KB
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
#include"ImageProcess.h"
void ImageProcess::Huchidori(FIBITMAP* image,std::vector<int> &edgeLoc,int width,int height)
{
int a = 0;
x = edgeLoc.begin();
for (; x != edgeLoc.end(); ++x)
{
//Žl•űŚü
FreeImage_GetPixelColor(image, *x % width, (*x / width) - 1, &color);
if (color.rgbReserved == a)
{
FreeImage_SetPixelColor(image, *x % width, (*x / width) - 1, &huchi);
}
FreeImage_GetPixelColor(image, (*x % width) + 1, *x / width, &color);
if (color.rgbReserved == a)
{
FreeImage_SetPixelColor(image, (*x % width) + 1, *x / width, &huchi);
}
FreeImage_GetPixelColor(image, (*x % width) - 1, *x / width, &color);
if (color.rgbReserved == a)
{
FreeImage_SetPixelColor(image, (*x % width) - 1, *x / width, &huchi);
}
FreeImage_GetPixelColor(image, *x % width, (*x / width) + 1, &color);
if (color.rgbReserved == a)
{
FreeImage_SetPixelColor(image, *x % width, (*x / width) + 1, &huchi);
}
//ŽÎ‚ß
FreeImage_GetPixelColor(image, (*x % width) - 1, (*x / width) - 1, &color);
if (color.rgbReserved == a)
{
FreeImage_SetPixelColor(image, (*x % width) - 1, (*x / width) - 1, &huchi);
}
FreeImage_GetPixelColor(image, (*x % width) + 1, (*x / width) - 1, &color);
if (color.rgbReserved == a)
{
FreeImage_SetPixelColor(image, (*x % width) + 1, (*x / width) - 1, &huchi);
}
FreeImage_GetPixelColor(image, (*x % width) - 1, (*x / width) + 1, &color);
if (color.rgbReserved == a)
{
FreeImage_SetPixelColor(image, (*x % width) - 1, (*x / width) + 1, &huchi);
}
FreeImage_GetPixelColor(image, (*x % width) + 1, (*x / width) + 1, &color);
if (color.rgbReserved == a)
{
FreeImage_SetPixelColor(image, (*x % width) + 1, (*x / width) + 1, &huchi);
}
}
}