-
Notifications
You must be signed in to change notification settings - Fork 0
/
Matrix.h
136 lines (113 loc) · 2.68 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(qint32 rows = 0, qint32 columns = 0) {
initMatrix(rows, columns);
}
virtual ~Matrix() {
}
ElementType & getValue(qint32 row, qint32 column) {
return array[row * columns + column];
}
const ElementType & getValue(qint32 row, qint32 column) const {
return array[row * columns + column];
}
void setValue(qint32 row, qint32 column, const ElementType & value) {
getValue(row, column) = value;
}
/**
* Will destroy all data
*/
void setDimension(qint32 rows, qint32 columns, ElementType initValue =
ElementType()) {
initMatrix(rows, columns, initValue);
}
qint32 getRowCount() const {
return rows;
}
qint32 getColumnCount() const {
return columns;
}
qint32 getLength() const {
return rows * columns;
}
void setRowCount(qint32 rowCount) {
initMatrix(rowCount, columns);
}
void setColumnCount(qint32 columnCount) {
initMatrix(rows, columnCount);
}
/**
* Iterators
*/
Iterator begin() {
return array.begin();
}
Iterator end() {
return array.end();
}
private:
void initMatrix(qint32 rows, qint32 columns, ElementType initValue =
ElementType()) {
this->rows = rows;
this->columns = columns;
qint32 length = rows * columns;
array.clear();
for (qint32 i = 0; i < length; ++i) {
array << initValue;
}
}
private:
QList<ElementType> array;
qint32 rows;
qint32 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 (qint32 r = 0; r < matrix.getRowCount(); ++r) {
for (qint32 c = 0; c < matrix.getColumnCount(); ++c) {
stream << matrix.getValue(r, c);
}
}
return stream;
}
template<typename ElementType>
QDataStream & operator>>(QDataStream & stream, Matrix<ElementType> & matrix) {
qint32 val;
stream >> val;
matrix.setRowCount(val);
stream >> val;
matrix.setColumnCount(val);
ElementType elem;
for (qint32 r = 0; r < matrix.getRowCount(); ++r) {
for (qint32 c = 0; c < matrix.getColumnCount(); ++c) {
stream >> elem;
matrix.setValue(r, c, elem);
}
}
return stream;
}
#endif /* MATRIX_H_ */