-
Notifications
You must be signed in to change notification settings - Fork 0
/
Image2DReader.h
123 lines (114 loc) · 3.52 KB
/
Image2DReader.h
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
//
// Created by no-code-team on 11/13/18.
//
#ifndef TP2_C_IMAGE2DREADER_H
#define TP2_C_IMAGE2DREADER_H
#include <iostream>
#include <string>
#include "Color.hpp"
#include "Image2D.h"
template <typename TValue>
class Image2DReader {
public:
typedef TValue Value;
typedef Image2D<Value> Image;
static bool read( Image & img, std::istream & input, bool ascii )
{
std::cerr << "[Image2DReader<TValue>::read] NOT IMPLEMENTED." << std::endl;
return false;
}
};
/// Specialization for gray-level images.
template <>
class Image2DReader<unsigned char> {
public:
typedef unsigned char Value;
typedef Image2D<Value> Image;
static bool read( Image & img, std::istream & input, bool ascii )
{
// teste si tout va bien
if (!input.good()){
std::cerr << "Le fichier donner n'est pas valide !";
return false;
}
std::string line;
// 1 - On passe le premiere ligne
std::getline(input, line);
// On se mais sur la ligne commenter
std::getline(input, line);
// 2- on lie le deuxieme
// 3 - on parcour les ligne tant que c'est des commentaire
while (line[0] == '#')
std::getline(input, line);
// 4 - On recupaire le hauteur est la largeur
std::istringstream istr(line);
int width, height;
istr >> width >> height;
img = Image(width, height, 0);
// on passe a la ligne suivant
std::getline(input, line);
std::istringstream istr2(line);
int pix_val = 0;
istr2 >> pix_val;
// std::getline(input, line);
Image::Iterator m_data_iterator = img.begin();
input >> std::noskipws;
// Parcoure du fichier
while (!input.eof()){
Value g;
// on recupaire le gray level
input >> g;
// on l'ajout a notre obj m-data via l'iterateur
*m_data_iterator++ = g;
}
return true;
}
};
/// Specialization for color images.
template <>
class Image2DReader<Color> {
public:
typedef Color Value;
typedef Image2D<Value> Image;
typedef Image::Iterator Iterator;
static bool read( Image & img, std::istream & input, bool ascii )
{
// teste si tout va bien
if (!input.good()){
std::cerr << "Le fichier donner n'est pas valide !";
return false;
}
std::string line;
// 1 - On passe le premiere ligne
std::getline(input, line);
// On se mais sur la ligne commenter
std::getline(input, line);
// 2- on lie le deuxieme
// 3 - on parcour les ligne tant que c'est des commentaire
while (line[0] == '#')
std::getline(input, line);
// 4 - On recupaire le hauteur est la largeur
std::istringstream istr(line);
int width, height;
istr >> width >> height;
img = Image(width, height, Color( 0, 0, 0 ));
// on passe a la ligne suivant
std::getline(input, line);
std::istringstream istr2(line);
int pix_val = 0;
istr2 >> pix_val;
// std::getline(input, line);
Iterator m_data_iterator = img.begin();
input >> std::noskipws;
// Parcoure du fichier
Color c;
while (!input.eof()){
// on recupaire le gray level
input >> c;
// on l'ajout a notre obj m-data via l'iterateur
*m_data_iterator++ = c;
}
return true;
}
};
#endif //TP2_C_IMAGE2DREADER_H