-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathngraph.hpp
161 lines (133 loc) · 4.78 KB
/
ngraph.hpp
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
// SPDX-FileCopyrightText: 2011-2012 Tasos Varoudis
//
// SPDX-License-Identifier: GPL-3.0-or-later
// ngraph.h
#pragma once
#include "pixelref.hpp"
#include <cstdint>
#include <istream>
struct PixelVec {
PixelVec(const PixelRef start = NoPixel, const PixelRef end = NoPixel)
: m_start(static_cast<int>(start)), m_end(static_cast<int>(end)) {}
PixelRef start() const { return m_start; }
PixelRef end() const { return m_end; } //
void setStart(PixelRef start) { m_start = start; }
void setEnd(PixelRef end) { m_end = end; } //
std::istream &read(std::istream &stream, const int8_t dir);
std::istream &read(std::istream &stream, const int8_t dir, const PixelVec &context);
std::ostream &write(std::ostream &stream, const int8_t dir);
std::ostream &write(std::ostream &stream, const int8_t dir, const PixelVec &context);
private:
PixelRef m_start;
PixelRef m_end;
};
class Bin {
friend class Node;
protected:
float m_distance;
float m_occDistance;
// Conversion back to old fashioned schema:
mutable int m_curvec;
mutable PixelRef m_curpix;
// TODO: in new version increase precision?
unsigned short m_nodeCount;
public:
int8_t dir;
private:
[[maybe_unused]] unsigned _padding0 : 1 * 8;
[[maybe_unused]] unsigned _padding1 : 4 * 8;
public:
std::vector<PixelVec> pixelVecs;
Bin()
: m_distance(0.0f), m_occDistance(0.0f), m_curvec(), m_curpix(), m_nodeCount(0),
dir(PixelRef::NODIR), _padding0(0), _padding1(0), pixelVecs() {}
void make(const PixelRefVector &pixels, int8_t onDir);
int count() const { return m_nodeCount; }
float distance() const { return m_distance; }
float occdistance() const { return m_occDistance; }
void setOccDistance(float d) { m_occDistance = d; }
bool containsPoint(const PixelRef p) const;
public:
void first() const;
void next() const;
bool is_tail() const;
PixelRef cursor() const;
std::istream &read(std::istream &stream);
std::ostream &write(std::ostream &stream);
friend std::ostream &operator<<(std::ostream &stream, const Bin &bin);
};
class Node {
protected:
// Conversion back to old fashioned schema:
mutable int m_curbin;
PixelRef m_pixel;
Bin m_bins[32];
public:
Node() : m_curbin(), m_pixel(), m_bins() {}
// testing some agent stuff:
std::vector<PixelRef> occlusionBins[32];
public:
// Note: this function clears the bins as it goes
void make(const PixelRef pix, PixelRefVector *bins, float *binFarDists, int qOctants);
bool concaveConnected();
bool fullyConnected();
//
void setPixel(const PixelRef &pixel) { m_pixel = pixel; }
//
const Bin &bin(const int i) const { return m_bins[i]; }
Bin &bin(int i) { return m_bins[i]; }
//
int count() {
int c = 0;
for (int i = 0; i < 32; i++)
c += m_bins[i].count();
return c;
}
int bincount(int i) { return m_bins[i].count(); }
float bindistance(int i) { return m_bins[i].distance(); }
void setbindistances(float binDists[32]) {
for (int i = 0; i < 32; i++)
m_bins[i].m_distance = binDists[i];
}
float occdistance(int i) { return m_bins[i].occdistance(); }
//
bool containsPoint(const PixelRef p) const;
public:
void contents(PixelRefVector &hood) const;
void first() const;
void next() const;
bool is_tail() const;
PixelRef cursor() const;
//
std::istream &read(std::istream &stream);
std::ostream &write(std::ostream &stream);
//
friend std::ostream &operator<<(std::ostream &stream, const Node &node);
};
// Two little helpers:
class PixelRefH : public PixelRef {
public:
PixelRefH() : PixelRef() {}
PixelRefH(const PixelRef &p) : PixelRef(p) {}
friend bool operator>(const PixelRefH &a, const PixelRefH &b);
friend bool operator<(const PixelRefH &a, const PixelRefH &b);
};
inline bool operator>(const PixelRefH &a, const PixelRefH &b) {
return (a.y > b.y || (a.y == b.y && a.x > b.x));
}
inline bool operator<(const PixelRefH &a, const PixelRefH &b) {
return (a.y < b.y || (a.y == b.y && a.x < b.x));
}
class PixelRefV : public PixelRef {
public:
PixelRefV() : PixelRef() {}
PixelRefV(const PixelRef &p) : PixelRef(p) {}
friend bool operator>(const PixelRefV &a, const PixelRefV &b);
friend bool operator<(const PixelRefV &a, const PixelRefV &b);
};
inline bool operator>(const PixelRefV &a, const PixelRefV &b) {
return (a.x > b.x || (a.x == b.x && a.y > b.y));
}
inline bool operator<(const PixelRefV &a, const PixelRefV &b) {
return (a.x < b.x || (a.x == b.x && a.y < b.y));
}