Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into lazperf
Browse files Browse the repository at this point in the history
  • Loading branch information
abellgithub committed Apr 20, 2021
2 parents 09e9971 + 297a7c0 commit 145a6ad
Show file tree
Hide file tree
Showing 9 changed files with 508 additions and 9 deletions.
4 changes: 2 additions & 2 deletions doc/apps/chamfer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ distance :math:`d_{CD}(X,Y)` is

::

--source arg Non-positional option for specifying filename of source file.
--candidate arg Non-positional option for specifying filename to test against source.
--source arg Source filename
--candidate arg Candidate filename

The algorithm makes no distinction between source and candidate files (i.e.,
they can be transposed with no affect on the computed distance).
Expand Down
70 changes: 70 additions & 0 deletions doc/apps/eval.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
.. _eval_command:

********************************************************************************
eval
********************************************************************************

The ``eval`` command is used to compare the ``Classification`` dimensions of two
point clouds.
::

$ pdal eval <predicted> <truth> --labels <labels>

::

--predicted arg Positional argument specifying point cloud filename containing predicted labels.
--truth arg Positional argument specifying point cloud filename containing truth labels.
--labels arg Comma-separated list of classification labels to evaluate.

The command returns 0 along with a JSON-formatted classification report
summarizing various classification metrics.

In the provided example below, the truth and predicted point clouds contain
points classified as ground (class 2) and medium vegetation (class 4) in
accordance with the LAS specification. Both point clouds also contain some
number of classifications that are either unlabeled or do not fall into the
specificied classes.

::

$ pdal eval predicted.las truth.las --labels 2,4
{
"confusion_matrix": "[[5240537,3860,24102],[268015,3179304,326677],[111453,115516,2950315]]",
"f1_score": 0.944,
"labels": [
{
"accuracy": 0.967,
"f1_score": 0.973,
"intersection_over_union": 0.947,
"label": "1",
"precision": 0.951,
"sensitivity": 0.995,
"specificity": 0.929,
"support": 5268499
},
{
"accuracy": 0.934,
"f1_score": 0.914,
"intersection_over_union": 0.842,
"label": "2",
"precision": 0.999,
"sensitivity": 0.842,
"specificity": 0.999,
"support": 3773996
}
],
"mean_intersection_over_union": 0.894,
"overall_accuracy": 0.931,
"pdal_version": "2.2.0 (git-version: 6e80b9)",
"predicted_file": "predicted.las",
"truth_file": "truth.las"
}

Most of the returned metrics will be self explanatory, with scores reported
both for individual classes and at a summary level. The returned confusion
matrix is presented in row-major order, where each row corresponds to a truth
label (the last row is a catch-all for any unlabeled or ignored entries).
Similarly, confusion matrix columns correspond to predicted labels where the
last column is once again a catch-all for unlabeled entries. Although
unlabeled/ignored truth labels are reported in the confusion matrix, they are
excluded from all computed scores.
4 changes: 2 additions & 2 deletions doc/apps/hausdorff.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ supremum and infimum respectively.

::

--source arg Non-positional option for specifying filename of source file.
--candidate arg Non-positional option for specifying filename to test against source.
--source arg Source filename
--candidate arg Candidate filename

The algorithm makes no distinction between source and candidate files (i.e.,
they can be transposed with no affect on the computed distance).
Expand Down
183 changes: 183 additions & 0 deletions kernels/EvalKernel.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,183 @@
/******************************************************************************
* Copyright (c) 2020, 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 "EvalKernel.hpp"

#include <pdal/KDIndex.hpp>
#include <pdal/PDALUtils.hpp>
#include <pdal/pdal_config.hpp>
#include <pdal/util/ProgramArgs.hpp>

namespace pdal
{

using namespace Dimension;

static StaticPluginInfo const s_info{
"kernels.eval", "Eval Kernel", "http://pdal.io/kernels/kernels.eval.html"};

CREATE_STATIC_KERNEL(EvalKernel, s_info)

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

void EvalKernel::addSwitches(ProgramArgs& args)
{
args.add("predicted", "Point cloud filename containing predicted labels",
m_predictedFile)
.setPositional();
args.add("truth", "Point cloud filename containing truth labels",
m_truthFile)
.setPositional();
args.add("labels",
"Comma-separated list of classification labels to evaluate",
m_labelStrList);
args.add("prediction_dim", "Dimension containing predicted labels",
m_predictedDimName, "Classification");
args.add("truth_dim", "Dimension containing truth labels", m_truthDimName,
"Classification");
}

void EvalKernel::validateSwitches(ProgramArgs& args)
{
if (m_labelStrList.empty())
throw pdal_error(
"Must specify comma-separated list of labels to evaluate.");
}

PointViewPtr EvalKernel::loadSet(const std::string& filename,
PointTableRef table)
{
Stage& reader = makeReader(filename, "");
reader.prepare(table);
PointViewSet viewSet = reader.execute(table);
assert(viewSet.size() == 1);
return *viewSet.begin();
}

int EvalKernel::execute()
{
ColumnPointTable predictedTable;
PointViewPtr predictedView = loadSet(m_predictedFile, predictedTable);
PointLayoutPtr predictedLayout(predictedTable.layout());
m_predictedDimId = predictedLayout->findDim(m_predictedDimName);
if (m_predictedDimId == Dimension::Id::Unknown)
throw pdal_error("Predicted dimension '" + m_predictedDimName +
"' does not exist.");

ColumnPointTable truthTable;
PointViewPtr truthView = loadSet(m_truthFile, truthTable);
PointLayoutPtr truthLayout(truthTable.layout());
m_truthDimId = truthLayout->findDim(m_truthDimName);
if (m_truthDimId == Dimension::Id::Unknown)
throw pdal_error("Truth dimension '" + m_truthDimName +
"' does not exist.");

assert(predictedView->size() == truthView->size());

KD3Index& kdi = truthView->build3dIndex();

int dim = m_labelStrList.size();

std::vector<int> labelList;
for (auto const& label : m_labelStrList)
labelList.push_back(std::stoi(label));
std::sort(labelList.begin(), labelList.end());

LabelStats ls(dim);

for (PointRef p : *predictedView)
{
// It would be nice if we could expect that the points are aligned in
// both the predicted and truth views, but this often cannot be
// guaranteed, so rather than using the same PointId, we search for the
// nearest neighbor.
PointId qid = kdi.neighbor(p);
PointRef q = truthView->point(qid);

// TODO (chambbj): We should perhaps look at the distance to the
// nearest point and reject or otherwise report distances greater than
// 0.0, indicating some sort of mismatch between files.

int pc = p.getFieldAs<int>(m_predictedDimId);
int qc = q.getFieldAs<int>(m_truthDimId);

auto it = std::find(labelList.begin(), labelList.end(), qc);
size_t qci;
if (it != labelList.end())
qci = std::distance(labelList.begin(), it);
else
qci = dim;

it = std::find(labelList.begin(), labelList.end(), pc);
size_t pci;
if (it != labelList.end())
pci = std::distance(labelList.begin(), it);
else
pci = dim;

ls.insert(qci, pci);
}

MetadataNode root;
for (int label = 0; label < dim; ++label)
{
MetadataNode elem = root.addList("labels");
elem.add("label", m_labelStrList[label]);
elem.add("support", ls.getSupport(label));
elem.add("intersection_over_union", ls.getIntersectionOverUnion(label),
"", 3);
elem.add("f1_score", ls.getF1Score(label), "", 3);
elem.add("sensitivity", ls.getSensitivity(label), "", 3);
elem.add("specificity", ls.getSpecificity(label), "", 3);
elem.add("precision", ls.getPrecision(label), "", 3);
elem.add("accuracy", ls.getAccuracy(label), "", 3);
}
root.add("mean_intersection_over_union", ls.getMeanIntersectionOverUnion(),
"", 3);
root.add("predicted_file", m_predictedFile);
root.add("truth_file", m_truthFile);
root.add("overall_accuracy", ls.getOverallAccuracy(), "", 3);
root.add("f1_score", ls.getF1Score(), "", 3);
root.add("confusion_matrix", ls.prettyPrintConfusionMatrix());
root.add("pdal_version", Config::fullVersionString());

Utils::toJSON(root, std::cout);

return 0;
}

} // namespace pdal

0 comments on commit 145a6ad

Please sign in to comment.