-
Notifications
You must be signed in to change notification settings - Fork 0
/
Matrix.h
136 lines (113 loc) · 2.6 KB
/
Matrix.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
124
125
126
127
128
129
130
131
132
133
134
135
136
/*
* Matrix.h
*
* Created on: May 27, 2010
* Author: Vincent
*/
#ifndef MATRIX_H_
#define MATRIX_H_
#include <QList>
#include <QPoint>
template<typename ElementType>
class Matrix {
public:
typedef QListIterator<ElementType> Iterator;
public:
Matrix(int rows = 0, int columns = 0) {
initMatrix(rows, columns);
}
virtual ~Matrix() {
}
ElementType & getValue(int row, int column) {
return array[row * columns + column];
}
const ElementType & getValue(int row, int column) const {
return array[row * columns + column];
}
void setValue(int row, int column, const ElementType & value) {
getValue(row, column) = value;
}
/**
* Will destroy all data
*/
void setDimension(int rows, int columns, ElementType initValue =
ElementType()) {
initMatrix(rows, columns, initValue);
}
int getRowCount() const {
return rows;
}
int getColumnCount() const {
return columns;
}
int getLength() const {
return rows * columns;
}
void setRowCount(int rowCount) {
initMatrix(rowCount, columns);
}
void setColumnCount(int columnCount) {
initMatrix(rows, columnCount);
}
/**
* Iterators
*/
Iterator begin() {
return array.begin();
}
Iterator end() {
return array.end();
}
private:
void initMatrix(int rows, int columns, ElementType initValue =
ElementType()) {
this->rows = rows;
this->columns = columns;
int length = rows * columns;
array.clear();
for (int i = 0; i < length; ++i) {
array << initValue;
}
}
private:
QList<ElementType> array;
int rows;
int columns;
};
typedef Matrix<double> RealMatrix;
typedef Matrix<QPoint> PointMatrix;
// Methods to save Patches
template<typename ElementType>
QDataStream & operator<<(QDataStream & stream,
const Matrix<ElementType> & matrix);
template<typename ElementType>
QDataStream & operator>>(QDataStream & stream, Matrix<ElementType> & matrix);
template<typename ElementType>
QDataStream & operator<<(QDataStream & stream,
const Matrix<ElementType> & matrix) {
stream << matrix.getRowCount();
stream << matrix.getColumnCount();
for (int r = 0; r < matrix.getRowCount(); ++r) {
for (int c = 0; c < matrix.getColumnCount(); ++c) {
stream << matrix.getValue(r, c);
}
}
return stream;
}
template<typename ElementType>
QDataStream & operator>>(QDataStream & stream, Matrix<ElementType> & matrix) {
int val;
stream >> val;
matrix.setRowCount(val);
stream >> val;
matrix.setColumnCount(val);
ElementType elem;
for (int r = 0; r < matrix.getRowCount(); ++r) {
for (int c = 0; c < matrix.getColumnCount(); ++c) {
stream >> elem;
matrix.setValue(r, c, elem);
}
}
return stream;
}
#endif /* MATRIX_H_ */