Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/master' into hobu-w…
Browse files Browse the repository at this point in the history
…indows-updates
  • Loading branch information
hobu committed Nov 11, 2016
2 parents 0c4f9e0 + ddc6345 commit 1b7703d
Show file tree
Hide file tree
Showing 18 changed files with 691 additions and 30 deletions.
1 change: 0 additions & 1 deletion cmake/gdal.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ find_package(GDAL 1.9.0)
set_package_properties(GDAL PROPERTIES TYPE REQUIRED
PURPOSE "Provides general purpose raster, vector, and reference system support")
if (GDAL_FOUND)

include_directories("${GDAL_INCLUDE_DIR}")
mark_as_advanced(CLEAR GDAL_INCLUDE_DIR)
mark_as_advanced(CLEAR GDAL_LIBRARY)
Expand Down
5 changes: 3 additions & 2 deletions cmake/macros.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,11 @@ endmacro(PDAL_ADD_LIBRARY)
###############################################################################
# Add a free library target (one that doesn't depend on PDAL).
# _name The library name.
# _library_type Shared or static
# ARGN The source files for the library.
#
macro(PDAL_ADD_FREE_LIBRARY _name)
add_library(${_name} ${PDAL_LIB_TYPE} ${ARGN})
macro(PDAL_ADD_FREE_LIBRARY _name _library_type)
add_library(${_name} ${_library_type} ${ARGN})
set_property(TARGET ${_name} PROPERTY FOLDER "Libraries")

install(TARGETS ${_name}
Expand Down
36 changes: 36 additions & 0 deletions doc/stages/filters.kdistance.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
.. _filters.kdistance:

===============================================================================
filters.kdistance
===============================================================================

The K-Distance filter creates a new attribute ``KDistance`` that contains the
Euclidean distance to a point's k-th nearest neighbor.

Example
-------------------------------------------------------------------------------

.. code-block:: json
{
"pipeline":[
"input.las",
{
"type":"filters.kdistance",
"k":8
},
{
"type":"writers.bpf",
"filename":"output.las",
"output_dims":"X,Y,Z,KDistance"
}
]
}
Options
-------------------------------------------------------------------------------

k
The number of k nearest neighbors. [Default: **10**]

47 changes: 47 additions & 0 deletions doc/stages/filters.radialdensity.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
.. _filters.radialdensity:

===============================================================================
filters.radialdensity
===============================================================================

The Radial Density filter creates a new attribute ``RadialDensity`` that
contains the density of points in a sphere of given radius.

The density at each point is computed by counting the number of points falling
within a sphere of given radius (default is 1.0) and centered at the current
point. The number of neighbors (including the query point) is then normalized
by the volume of the sphere, defined as

.. math::
V = \frac{4}{3} \pi r^3
The radius :math:`r` can be adjusted by changing the ``radius`` option.

Example
-------------------------------------------------------------------------------

.. code-block:: json
{
"pipeline":[
"input.las",
{
"type":"filters.radialdensity",
"radius":2.0
},
{
"type":"writers.bpf",
"filename":"output.bpf",
"output_dims":"X,Y,Z,RadialDensity"
}
]
}
Options
-------------------------------------------------------------------------------

radius
Radius. [Default: **1.0**]

2 changes: 2 additions & 0 deletions filters/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ add_subdirectory(estimaterank)
add_subdirectory(ferry)
add_subdirectory(hag)
add_subdirectory(iqr)
add_subdirectory(kdistance)
add_subdirectory(lof)
add_subdirectory(mad)
add_subdirectory(merge)
Expand All @@ -19,6 +20,7 @@ add_subdirectory(mortonorder)
add_subdirectory(normal)
add_subdirectory(outlier)
add_subdirectory(pmf)
add_subdirectory(radialdensity)
add_subdirectory(randomize)
add_subdirectory(range)
add_subdirectory(reprojection)
Expand Down
2 changes: 2 additions & 0 deletions filters/kdistance/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
PDAL_ADD_DRIVER(filter kdistance "KDistanceFilter.cpp" "KDistanceFilter.hpp" objects)
set(PDAL_TARGET_OBJECTS ${PDAL_TARGET_OBJECTS} ${objects} PARENT_SCOPE)
96 changes: 96 additions & 0 deletions filters/kdistance/KDistanceFilter.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
/******************************************************************************
* Copyright (c) 2016, Bradley J Chambers (brad.chambers@gmail.com)
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following
* conditions are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided
* with the distribution.
* * Neither the name of Hobu, Inc. or Flaxen Geo Consulting nor the
* names of its contributors may be used to endorse or promote
* products derived from this software without specific prior
* written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
* OF SUCH DAMAGE.
****************************************************************************/

#include "KDistanceFilter.hpp"

#include <pdal/KDIndex.hpp>
#include <pdal/pdal_macros.hpp>

#include <string>
#include <vector>

namespace pdal
{

static PluginInfo const s_info =
PluginInfo("filters.kdistance", "K-Distance Filter",
"http://pdal.io/stages/filters.kdistance.html");

CREATE_STATIC_PLUGIN(1, 0, KDistanceFilter, Filter, s_info)

std::string KDistanceFilter::getName() const
{
return s_info.name;
}

void KDistanceFilter::addArgs(ProgramArgs& args)
{
args.add("k", "k neighbors", m_k, 10);
}

void KDistanceFilter::addDimensions(PointLayoutPtr layout)
{
using namespace Dimension;
m_kdist = layout->registerOrAssignDim("KDistance", Type::Double);
}

void KDistanceFilter::filter(PointView& view)
{
using namespace Dimension;

// Build the 3D KD-tree.
log()->get(LogLevel::Debug) << "Building 3D KD-tree...\n";
KD3Index index(view);
index.build();

// Increment the minimum number of points, as knnSearch will be returning
// the neighbors along with the query point.
m_k++;

// Compute the k-distance for each point. The k-distance is the Euclidean
// distance to k-th nearest neighbor.
log()->get(LogLevel::Debug) << "Computing k-distances...\n";
for (PointId i = 0; i < view.size(); ++i)
{
double x = view.getFieldAs<double>(Id::X, i);
double y = view.getFieldAs<double>(Id::Y, i);
double z = view.getFieldAs<double>(Id::Z, i);
std::vector<PointId> indices(m_k);
std::vector<double> sqr_dists(m_k);
index.knnSearch(x, y, z, m_k, &indices, &sqr_dists);
view.setField(m_kdist, i, std::sqrt(sqr_dists[m_k-1]));
}
}

} // namespace pdal
74 changes: 74 additions & 0 deletions filters/kdistance/KDistanceFilter.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
/******************************************************************************
* Copyright (c) 2016, Bradley J Chambers (brad.chambers@gmail.com)
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following
* conditions are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided
* with the distribution.
* * Neither the name of Hobu, Inc. or Flaxen Geo Consulting nor the
* names of its contributors may be used to endorse or promote
* products derived from this software without specific prior
* written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
* OF SUCH DAMAGE.
****************************************************************************/

#pragma once

#include <pdal/Filter.hpp>
#include <pdal/plugin.hpp>

#include <memory>

extern "C" int32_t KDistanceFilter_ExitFunc();
extern "C" PF_ExitFunc KDistanceFilter_InitPlugin();

namespace pdal
{

class PointLayout;
class PointView;
class ProgramArgs;

class PDAL_DLL KDistanceFilter : public Filter
{
public:
KDistanceFilter() : Filter()
{}

static void * create();
static int32_t destroy(void *);
std::string getName() const;

private:
Dimension::Id m_kdist;
int m_k;

virtual void addArgs(ProgramArgs& args);
virtual void addDimensions(PointLayoutPtr layout);
virtual void filter(PointView& view);

KDistanceFilter& operator=(const KDistanceFilter&); // not implemented
KDistanceFilter(const KDistanceFilter&); // not implemented
};

} // namespace pdal
2 changes: 2 additions & 0 deletions filters/radialdensity/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
PDAL_ADD_DRIVER(filter radialdensity "RadialDensityFilter.cpp" "RadialDensityFilter.hpp" objects)
set(PDAL_TARGET_OBJECTS ${PDAL_TARGET_OBJECTS} ${objects} PARENT_SCOPE)
92 changes: 92 additions & 0 deletions filters/radialdensity/RadialDensityFilter.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
/******************************************************************************
* Copyright (c) 2016, Bradley J Chambers (brad.chambers@gmail.com)
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following
* conditions are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided
* with the distribution.
* * Neither the name of Hobu, Inc. or Flaxen Geo Consulting nor the
* names of its contributors may be used to endorse or promote
* products derived from this software without specific prior
* written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
* OF SUCH DAMAGE.
****************************************************************************/

#include "RadialDensityFilter.hpp"

#include <pdal/KDIndex.hpp>
#include <pdal/pdal_macros.hpp>

#include <string>
#include <vector>

namespace pdal
{

static PluginInfo const s_info =
PluginInfo("filters.radialdensity", "RadialDensity Filter",
"http://pdal.io/stages/filters.radialdensity.html");

CREATE_STATIC_PLUGIN(1, 0, RadialDensityFilter, Filter, s_info)

std::string RadialDensityFilter::getName() const
{
return s_info.name;
}

void RadialDensityFilter::addArgs(ProgramArgs& args)
{
args.add("radius", "Radius", m_rad, 1.0);
}

void RadialDensityFilter::addDimensions(PointLayoutPtr layout)
{
using namespace Dimension;
m_rdens = layout->registerOrAssignDim("RadialDensity", Type::Double);
}

void RadialDensityFilter::filter(PointView& view)
{
using namespace Dimension;

// Build the 3D KD-tree.
log()->get(LogLevel::Debug) << "Building 3D KD-tree...\n";
KD3Index index(view);
index.build();

// Search for neighboring points within the specified radius. The number of
// neighbors (which includes the query point) is normalized by the volume
// of the search sphere and recorded as the density.
log()->get(LogLevel::Debug) << "Computing densities...\n";
double factor = 1.0 / ((4.0 / 3.0) * 3.14159 * (m_rad * m_rad * m_rad));
for (PointId i = 0; i < view.size(); ++i)
{
double x = view.getFieldAs<double>(Id::X, i);
double y = view.getFieldAs<double>(Id::Y, i);
double z = view.getFieldAs<double>(Id::Z, i);
std::vector<PointId> pts = index.radius(x, y, z, m_rad);
view.setField(m_rdens, i, pts.size() * factor);
}
}

} // namespace pdal
Loading

0 comments on commit 1b7703d

Please sign in to comment.