RDB 2
rdb-example-07-fill-points.cpp
/*
*******************************************************************************
*
* Copyright 2023 RIEGL Laser Measurement Systems
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*
*******************************************************************************
*/
/*!
*******************************************************************************
*
* \file rdb-example-07-fill-points.cpp
* \author RIEGL LMS GmbH, Austria
* \brief RDB example 7: Fill points
* \version 2016-11-14/AW: Initial version
* \version 2018-07-10/AW: Use new bindBuffer() instead of bind() function
*
* This example shows how to open an existing database and to fill (set)
* a point attribute with a constant value for all points. Please note
* that this could also be accomplished by combining select and update
* queries as shown in "rdb-example-4-update-points.cpp", but the fill
* query might be faster (lower processing time) and easier to use.
* This example is based on the database of rdb-example-1-create-database.
*
* Build instructions see "interface/cpp/riegl/README.TXT".
*
*******************************************************************************
*/
#include <vector>
#include <cstdint>
#include <iostream>
#include <exception>
#include <riegl/rdb.hpp>
int main()
{
try
{
// New RDB library context
// Access existing database
riegl::rdb::Pointcloud rdb(context);
rdb.open("pointcloud.rdbx", settings);
// Before we can modify the database, we must start a transaction
rdb, // point cloud object
"Fill", // transaction title
"Point Classifier v1.0" // software name
);
// Set point class and color to a fixed value for all points
{
using namespace riegl::rdb::pointcloud;
const uint8_t point_class = 0;
const uint8_t point_color[4] = {255, 255, 255, 255};
QueryFill fill = rdb.fill();
fill.bindBuffer(RDB_RIEGL_CLASS, point_class);
fill.bindBuffer(RDB_RIEGL_RGBA, point_color);
while (const uint32_t count = fill.next(10000))
{
std::cout << fill.progress() << "% done" << std::endl;
}
}
// Set different class and color for points that have a reflectance of
// at least 10 dB. This is actually the same as above but with different
// constants and a filter expression supplied to the fill() function.
{
using namespace riegl::rdb::pointcloud;
const uint8_t point_class = 101;
const uint8_t point_color[4] = {255, 102, 0, 255};
QueryFill fill = rdb.fill("riegl.reflectance >= 10");
fill.bindBuffer(RDB_RIEGL_CLASS, point_class);
fill.bindBuffer(RDB_RIEGL_RGBA, point_color);
while (const uint32_t count = fill.next(10000))
{
std::cout << fill.progress() << "% done" << std::endl;
}
}
// Finally commit transaction
transaction.commit();
// Success
return 0;
}
catch(const riegl::rdb::Error &error)
{
std::cerr << error.what() << " (" << error.details() << ")" << std::endl;
return 1; // error
}
catch(const std::exception &error)
{
std::cerr << error.what() << std::endl;
return 1; // error
}
}
riegl::rdb::Pointcloud::open
void open(const std::string &location, const pointcloud::OpenSettings &settings)
Open existing database.
riegl::rdb::Error::details
virtual const char * details() const RDB_NO_EXCEPT
Get error details.
riegl::rdb::pointcloud::TransactionScope::commit
void commit()
Commit transaction.
Definition: transactionScope.hpp:108
riegl::rdb::pointcloud::QueryFill::next
std::uint32_t next(std::uint32_t count)
Fill points.
riegl::rdb::pointcloud::OpenSettings
Database open settings.
Definition: openSettings.hpp:61
riegl::rdb::pointcloud::QueryFill::progress
std::uint32_t progress() const
Progress.
riegl::rdb::Error::what
virtual const char * what() const RDB_NO_EXCEPT
Get error text.
riegl::rdb::pointcloud::TransactionScope
Point cloud transaction scope helper class.
Definition: transactionScope.hpp:59
riegl::rdb::Pointcloud
Main point cloud database class.
Definition: pointcloud.hpp:89
rdb.hpp
Main RDB library include file.
riegl::rdb::pointcloud
RDB point cloud classes.
Definition: context.hpp:55
riegl::rdb::Pointcloud::fill
pointcloud::QueryFill fill(const std::string &filter=std::string())
Fill points.
riegl::rdb::pointcloud::QueryFill::bindBuffer
void bindBuffer(const std::string &attribute, const ValueType &buffer)
Bind attribute buffer.
Definition: queryFill.hpp:148
riegl::rdb::pointcloud::QueryFill
Point fill query.
Definition: queryFill.hpp:71
default.hpp
Master include file for RIEGL defaults.
riegl::rdb::Error
Database error class.
Definition: error.hpp:61
riegl::rdb::Context
Library context.
Definition: context.hpp:75