-
Notifications
You must be signed in to change notification settings - Fork 0
/
DN13.java
355 lines (295 loc) · 9.84 KB
/
DN13.java
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
import java.util.Scanner;
import java.io.File;
import Prikaz;
public class DN13 {
public static void main(String[] args){
try {
Tocka t = new Tocka(0, 255, 126);
Tocka t1 = new Tocka(150, 255, 10);
Tocka t2 = new Tocka(150);
Tocka t3 = new Tocka(255);
System.out.println(t + " " + t1 + " " + t2 + " " + t3);
} catch (ColorError e) {
System.out.println(e);
}
}
public static Slika readImagePublic(String path){
try {
Scanner sc = new Scanner(new File(path));
String[] topLine;
boolean color = true;
Integer width = 0;
Integer height = 0;
Tocka[][] pixles = new Tocka[0][0];
if (sc.hasNextLine()){
topLine = sc.nextLine().split(" ");
if (topLine[0] == "P2TC") {
color = true;
} else {
color = false;
}
width = Integer.parseInt(topLine[1].split("x")[0]);
height = Integer.parseInt(topLine[1].split("x")[1]);
int widthCounter = 0;
int heightCounter = 0;
pixles = new Tocka[width][height];
if (color) {
while(sc.hasNext()){
if (widthCounter == width) {
widthCounter = 0;
System.out.println("width error");
}
if (heightCounter == height) {
heightCounter = 0;
}
String[] colors = sc.next().split(";");
pixles[widthCounter][heightCounter] = new Tocka(Integer.parseInt(colors[0]), Integer.parseInt(colors[1]), Integer.parseInt(colors[2]));
}
} else {
while(sc.hasNext()){
if (widthCounter == width) {
widthCounter = 0;
System.out.println("width error");
}
if (heightCounter == height) {
heightCounter = 0;
}
pixles[widthCounter][heightCounter] = new Tocka(Integer.parseInt(sc.next()));
}
}
}
} catch (Exception e) {
System.out.println(e);
}
return new Slika(width, height, path, color, pixles);
}
}
/*#######--MAIN CLASSES--#######*/
class Tocka {
/*-----Vars-----*/
private boolean color = false;
private boolean grey = false;
Integer red;
Integer green;
Integer blue;
/*----Constructor----*/
//Constructor overloaded given by given color bytes
//Given 3 presumed color
//Given single presumed gray
public Tocka(Integer red, Integer green, Integer blue ) throws ColorError{
//COLOR
if (isBetween(red, 0, 255) && isBetween(green, 0, 255) && isBetween(blue, 0, 255)) {
this.red = red;
this.green = green;
this.blue = blue;
this.color = true;
} else {
throw new ColorError(red, green, blue);
}
}
public Tocka(Integer gray ) throws ColorError{
//GRAY
if (isBetween(gray, 0, 255)) {
this.red = gray;
this.green = gray;
this.blue = gray;
this.grey = true;
} else {
throw new ColorError(gray, gray, gray);
}
}
/*----Getters----*/
public Integer[] getBarve() {
return new Integer[]{this.red, this.green, this.blue};
}
public Integer getRed() {
return this.red;
}
public Integer getGreen() {
return this.green;
}
public Integer getBlue() {
return this.blue;
}
public boolean getGrey() {
return this.grey;
}
/*----Setters----*/
public void setRed(Integer newVal) {
if (isBetween(newVal, 0, 255)){
this.red = newVal;
grayTest();
}
}
public void setGreen(Integer newVal) {
if (isBetween(newVal, 0, 255)){
this.green = newVal;
grayTest();
}
}
public void setBlue(Integer newVal) {
if (isBetween(newVal, 0, 255)){
this.blue = newVal;
grayTest();
}
}
/*----Overloads----*/
public String toString(){
return "("+ this.red + ", " + this.green + ", " + this.blue + ")";
}
/*----Helpers----*/
private void grayTest(){
//checks if all colors are same, sets grey flag otherwise color flag.
if (this.red == this.green && this.red == this.blue) {
this.grey = true;
this.color = false;
} else {
this.color = true;
this.grey = false;
}
}
private boolean isBetween(Integer i, Integer bottom, Integer top) {
/**
* Inclusive isBetween function for an Integer.
*
* @Param i Integer to be checked
* @Param bottom Inclusive bottom limit
* @Param top Inclusive top limit
*
* @Return boolean true or false
*
*/
if (i >= bottom && i <= top ) {
return true;
}
return false;
}
}
class Slika {
/*-----Vars-----*/
Integer width;
Integer height;
String path;
String ime;
boolean color;
boolean gray;
Tocka[][] pixles;
/*----Constructor----*/
//Constructor overloaded by arguments passed.
//Can be passed as all variables
//Can be passed as path only
//Can be passed as 2d array of Tocka classes
public Slika (Integer width, Integer height, String ime, boolean color, Tocka[][] pixles) {
//All variables
try {
this.width = width;
this.height = height;
this.ime = ime;
this.color = color;
this.pixles = pixles;
} catch (Exception e) {
System.out.println(e);
}
}
public Slika (String path) {
//as Path
this.path = path;
}
public Slika (Tocka[][] pixles) {
//as Path
this.pixles = pixles;
getDataFromPixles();
}
/*-----Getters and Setters-----*/
public String getIme(){
return this.ime;
}
public int getSirina(){
return this.width;
}
public int getVisina(){
return this.height;
}
public Tocka getTocka(Integer x, Integer y){
return this.pixles[x][y];
}
public boolean getColor(){
return this.color;
}
public Tocka[][] getAllPixles(){
return this.pixles;
}
public void setIme(String ime) {
this.ime = ime;
}
public void setPath(String path) {
this.path = path;
}
/*-----Helpers-----*/
private void readImage(){
Scanner sc = new Scanner(new File(this.path));
String[] topLine;
if (sc.hasNextLine()){
topLine = sc.nextLine().split(" ");
if (topLine[0] == "P2TC") {
this.color = true;
} else {
this.color = false;
}
this.width = Integer.parseInt(topLine[1].split("x")[0]);
this.height = Integer.parseInt(topLine[1].split("x")[1]);
int widthCounter = 0;
int heightCounter = 0;
this.pixles = new Tocka[width][height];
if (this.color) {
while(sc.hasNext()){
if (widthCounter == width) {
widthCounter = 0;
System.out.println("width error");
}
if (heightCounter == height) {
heightCounter = 0;
}
String[] colors = sc.next().split(";");
pixles[widthCounter][heightCounter] = new Tocka(Integer.parseInt(colors[0]), Integer.parseInt(colors[1]), Integer.parseInt(colors[2]));
}
} else {
while(sc.hasNext()){
if (widthCounter == width) {
widthCounter = 0;
System.out.println("width error");
}
if (heightCounter == height) {
heightCounter = 0;
}
pixles[widthCounter][heightCounter] = new Tocka(Integer.parseInt(sc.next()));
}
}
}
}
private boolean getDataFromPixles() {
this.width = pixles.length;
this.height = pixles[1].length;
for(Tocka[] t: this.pixles){
for(Tocka t1: t){
if (t1.getGrey() != true) {
this.color = true;
return true;
}
}
}
this.color = false;
return false;
}
}
/*########--ERRORS AND EXCEPTIONS--########*/
class ColorError extends Exception {
public ColorError(Integer red, Integer green, Integer blue){
//If color exception throw
super("Wrong RGB value insereted into touple: (" + red + ", " + green + ", " + blue + ")");
}
public ColorError(Integer gray){
//If grayscale exception throw
super("Wrong RGB value insereted into touple: (" + gray + ", " + gray + ", " + gray + ")");
}
}