-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathpointdbwriter.cpp
235 lines (205 loc) · 7.2 KB
/
pointdbwriter.cpp
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
// Copyright 2015, Christopher J. Foster and the other displaz contributors.
// Use of this code is governed by the BSD-style license found in LICENSE.txt
#include "pointdbwriter.h"
#include <algorithm>
#include <fstream>
#include <memory>
#include <QString>
#include <QFileInfo>
#include <QDir>
// Use laslib
#ifdef _MSC_VER
# pragma warning(push)
# pragma warning(disable : 4996)
# pragma warning(disable : 4267)
#elif __GNUC__
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wstrict-aliasing"
# pragma GCC diagnostic ignored "-Wunused-but-set-variable"
#endif
// Note... laslib generates a small horde of warnings
#include <lasreader.hpp>
#ifdef _MSC_VER
# pragma warning(push)
#elif __GNUC__
# pragma GCC diagnostic pop
#if LAS_TOOLS_VERSION <= 120124
// Hack: kill gcc unused variable warning
class MonkeyChops { MonkeyChops() { (void)LAS_TOOLS_FORMAT_NAMES; } };
#endif
#endif
struct PointDbWriter::PointDbTile
{
PointDbTile(TilePos tilePos) : tilePos(tilePos), recentlyUsed(false) {}
TilePos tilePos;
std::vector<float> position;
std::vector<float> intensity;
bool recentlyUsed;
size_t numPoints() const { return position.size()/3; }
size_t sizeBytes() const
{
return sizeof(float)*position.capacity() +
sizeof(float)*intensity.capacity();
}
bool empty() const { return position.empty(); }
};
PointDbWriter::PointDbWriter(const std::string& dirName, const Imath::Box3d& boundingBox,
double tileSize, size_t flushInterval, Logger& logger)
: m_dirName(dirName),
m_boundingBox(boundingBox),
m_tileSize(tileSize),
m_offset(0),
m_computeBounds(boundingBox.isEmpty()),
m_flushInterval(flushInterval),
m_haveOffset(false),
m_prevTile(nullptr),
m_pointsWritten(0),
m_logger(logger)
{
QString qdirName = QString::fromUtf8(dirName.c_str(), dirName.size());
if (QFileInfo(qdirName).isDir())
throw DisplazError("Point output directory already exists: %s", dirName);
if (!QDir().mkpath(qdirName))
throw DisplazError("Could not create directory: %s", dirName);
}
size_t PointDbWriter::cacheSizeBytes() const
{
size_t bytes = 0;
for (auto it = m_cache.begin(); it != m_cache.end(); ++it)
bytes += it->second.sizeBytes();
return bytes;
}
void PointDbWriter::writePoint(Imath::V3d P, float intensity)
{
if (!m_haveOffset)
{
m_offset = P;
m_haveOffset = true;
}
TilePos tilePos((int)floor(P.x/m_tileSize),
(int)floor(P.y/m_tileSize),
(int)floor(P.z/m_tileSize));
PointDbTile& tile = findTile(tilePos);
if (m_computeBounds)
m_boundingBox.extendBy(P);
assert(m_boundingBox.intersects(P));
tile.position.push_back(P.x - m_offset.x);
tile.position.push_back(P.y - m_offset.y);
tile.position.push_back(P.z - m_offset.z);
tile.intensity.push_back(intensity);
m_pointsWritten += 1;
if (m_pointsWritten % m_flushInterval == 0)
flushTiles();
}
void PointDbWriter::close()
{
flushTiles(true);
// Write config file
std::ofstream dbConfig(tfm::format("%s/config.txt", m_dirName));
tfm::format(dbConfig,
"%.17e\n"
"%.17e %.17e %.17e %.17e %.17e %.17e\n"
"%.17e %.17e %.17e\n",
m_tileSize,
m_boundingBox.min.x, m_boundingBox.min.y, m_boundingBox.min.z,
m_boundingBox.max.x, m_boundingBox.max.y, m_boundingBox.max.z,
m_offset.x, m_offset.y, m_offset.z
);
for (auto it = m_cache.begin(); it != m_cache.end(); ++it)
{
tfm::format(dbConfig, "%d %d %d\n", it->second.tilePos.x,
it->second.tilePos.y, it->second.tilePos.z);
}
}
PointDbWriter::PointDbTile& PointDbWriter::findTile(const TilePos& pos)
{
if (m_prevTile && m_prevTile->tilePos == pos)
{
m_prevTile->recentlyUsed = true;
return *m_prevTile;
}
auto it = m_cache.find(pos);
if (it == m_cache.end())
{
// Create new empty tile
it = m_cache.insert(std::make_pair(pos, PointDbTile(pos))).first;
}
it->second.recentlyUsed = true;
m_prevTile = &it->second;
return it->second;
}
void PointDbWriter::flushTiles(bool forceFlushAll)
{
for (auto it = m_cache.begin(); it != m_cache.end(); ++it)
{
PointDbTile& tile = it->second;
if ((forceFlushAll || !tile.recentlyUsed) && !tile.empty())
flushToDisk(tile);
tile.recentlyUsed = false;
}
}
void PointDbWriter::flushToDisk(PointDbTile& tile)
{
assert(!tile.empty());
std::string fileName = tfm::format("%s/%d_%d_%d.dat", m_dirName,
tile.tilePos.x, tile.tilePos.y, tile.tilePos.z);
std::ofstream file(fileName.c_str(), std::ios::binary | std::ios::app | std::ios::ate);
if (file.tellp() > 0)
{
m_logger.debug("Reopening file %s to flush %d points",
fileName, tile.numPoints());
}
for (size_t i = 0; i < tile.numPoints(); ++i)
{
file.write((const char*)&tile.position[3*i], 3*sizeof(float));
file.write((const char*)&tile.intensity[i], sizeof(float));
}
tile.position.clear();
tile.position.shrink_to_fit();
tile.intensity.clear();
tile.intensity.shrink_to_fit();
}
//------------------------------------------------------------------------------
inline void fixLasFileName(std::string& fileName)
{
# ifdef _WIN32
// Hack: liblas doesn't like forward slashes as path separators on windows
std::replace(fileName.begin(), fileName.end(), '/', '\\');
# endif
}
void convertLasToPointDb(const std::string& outDirName,
const std::vector<std::string>& lasFileNames,
const Imath::Box3d& boundingBox, double tileSize,
Logger& logger)
{
PointDbWriter dbWriter(outDirName, boundingBox, tileSize, 1000000, logger);
bool useBounds = !boundingBox.isEmpty();
for (size_t fileIdx = 0; fileIdx < lasFileNames.size(); ++fileIdx)
{
std::string fileName = lasFileNames[fileIdx];
fixLasFileName(fileName);
LASreadOpener lasReadOpener;
lasReadOpener.set_file_name(fileName.c_str());
std::unique_ptr<LASreader> lasReader(lasReadOpener.open());
if(!lasReader)
throw DisplazError("Could not open file: %s", fileName);
uint64_t totPoints = std::max<uint64_t>(lasReader->header.extended_number_of_point_records,
lasReader->header.number_of_point_records);
logger.info("File %s: %d points", fileName, totPoints);
logger.progress("Ingest file %d", fileIdx);
uint64_t pointsRead = 0;
while (lasReader->read_point())
{
const LASpoint& point = lasReader->point;
V3d P = V3d(point.get_x(), point.get_y(), point.get_z());
pointsRead += 1;
logger.progress(double(pointsRead)/totPoints);
if (pointsRead % 1000000 == 0)
logger.debug("Cache size: %.2fMB", dbWriter.cacheSizeBytes()/1000000.0);
if (useBounds && !boundingBox.intersects(P))
continue;
dbWriter.writePoint(P, point.intensity);
}
}
dbWriter.close();
}