-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathColor.cpp
164 lines (159 loc) · 3.56 KB
/
Color.cpp
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/*
* GrabCut implementation source code Copyright(c) 2005-2006 Justin Talbot
*
* All Rights Reserved.
* For educational use only; commercial use expressly forbidden.
* NO WARRANTY, express or implied, for this software.
*/
#include "Color.h"
namespace GrabCutNS {
Real distance2( const Color& c1, const Color& c2 )
{
return ((c1.r-c2.r)*(c1.r-c2.r)+(c1.g-c2.g)*(c1.g-c2.g)+(c1.b-c2.b)*(c1.b-c2.b));
}
//Image<Color>* _loadFromPGM( std::string file_name );
//Image<Color>* _loadFromPPM( std::string file_name );
//Image<Color>* _loadWithQt( std::string file_name );
//
//Image<Color>* load( std::string file_name )
//{
// if( file_name.find( ".pgm" ) != std::string::npos )
// {
// return _loadFromPGM( file_name );
// }
//
// else if( file_name.find( ".ppm" ) != std::string::npos )
// {
// return _loadFromPPM( file_name );
// }
//
// else
// {
// return _loadWithQt(file_name);
// }
//}
//
//Image<Color>* _loadFromPGM( std::string file_name )
//{
// std::ifstream inPGM( file_name.c_str(), std::ios::in | std::ios::binary );
// if( !inPGM.is_open() ) return NULL;
//
// char version[2];
// inPGM.read(version, 2);
//
// char line[1000];
// char t;
//
// if( version[0] == 'P' && version[1] == '5' ) {
//
// std::string comment;
//
// while( inPGM.peek() < 48 || inPGM.peek() > 57 )
// {
// if( inPGM.peek() == '#' )
// inPGM.getline( line, 1000 );
// else
// inPGM.read( &t, 1 );
// }
//
// unsigned int width, height, maximum;
//
// inPGM >> width >> height;
// inPGM >> maximum;
//
// Image<Color>* image = new Image<Color>(width, height);
//
// if (image)
// {
// if (inPGM.peek() == 13) inPGM.read( &t, 1 );
// if (inPGM.peek() == 10) inPGM.read( &t, 1 );
//
// for (unsigned int i = 0; i < height; ++i)
// {
// for (unsigned int j = 0; j < width; ++j)
// {
// inPGM.read( &t, 1 );
// Real c = (Real)((unsigned char)t)/maximum;
// (*image)(j, (height-1)-i) = Color(c,c,c);
// }
// }
// }
//
// inPGM.close();
//
// return image;
// }
// else
// {
// return NULL;
// }
//}
//
//Image<Color>* _loadFromPPM( std::string file_name )
//{
// std::ifstream inPPM( file_name.c_str(), std::ios::in | std::ios::binary );
// if( !inPPM.is_open() ) return false;
//
// char version[2];
// inPPM.read(version, 2);
//
// char line[1000];
// char t;
//
// if( version[0] == 'P' && version[1] == '6' ) {
//
// std::string comment;
//
// while( inPPM.peek() < 48 || inPPM.peek() > 57 )
// {
// if( inPPM.peek() == '#' )
// inPPM.getline( line, 1000 );
// else
// inPPM.read( &t, 1 );
// }
//
// unsigned int width, height, maximum;
//
// inPPM >> width >> height;
// inPPM >> maximum;
//
// Image<Color>* image = new Image<Color>(width, height);
//
// if (image)
// {
// if (inPPM.peek() == 13) inPPM.read( &t, 1 );
// if (inPPM.peek() == 10) inPPM.read( &t, 1 );
//
// for (unsigned int i = 0; i < height; ++i)
// {
// for (unsigned int j = 0; j < width; ++j)
// {
// char r, g, b;
//
// inPPM.read( &r, 1 );
// inPPM.read( &g, 1 );
// inPPM.read( &b, 1 );
//
// Real R, G, B;
// R = (Real)((unsigned char)r)/maximum;
// G = (Real)((unsigned char)g)/maximum;
// B = (Real)((unsigned char)b)/maximum;
//
// (*image)(j, (height-1)-i) = Color(R,G,B);
// }
// }
// }
//
// inPPM.close();
//
// return image;
// }
//
// return 0;
//}
//
//Image<Color>* _loadWithQt( std::string file_name )
//{
// return NULL;
//}
}