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 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
|
//##########################################################################
//# #
//# CLOUDCOMPARE PLUGIN: q3DMASC #
//# #
//# This program is free software; you can redistribute it and/or modify #
//# it under the terms of the GNU General Public License as published by #
//# the Free Software Foundation; version 2 or later of the License. #
//# #
//# This program is distributed in the hope that it will be useful, #
//# but WITHOUT ANY WARRANTY; without even the implied warranty of #
//# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
//# GNU General Public License for more details. #
//# #
//# COPYRIGHT: Dimitri Lague / CNRS / UEB #
//# #
//##########################################################################
#include "NeighborhoodFeature.h"
//CCLib
#include <DgmOctreeReferenceCloud.h>
#include <Neighbourhood.h>
#include <Jacobi.h>
using namespace masc;
bool NeighborhoodFeature::checkValidity(QString corePointRole, QString &error) const
{
if (!Feature::checkValidity(corePointRole, error))
{
return false;
}
if (type == Invalid)
{
assert(false);
error = "invalid feature type";
return false;
}
if (stat != Feature::NO_STAT)
{
error = "Neighborhood features shouldn't be associated to a STAT measure";
return false;
}
if (cloud2 && op == NO_OPERATION)
{
error = "Feature has a second cloud associated but no MATH operation is defined";
return false;
}
if (std::isnan(scale))
{
error = "No scale defined";
return false;
}
return true;
}
bool NeighborhoodFeature::prepare( const CorePoints& corePoints,
QString& error,
CCCoreLib::GenericProgressCallback* progressCb/*=nullptr*/,
SFCollector* generatedScalarFields/*=nullptr*/)
{
if (!cloud1 || !corePoints.cloud)
{
//invalid input
assert(false);
error = "internal error (no input core points)";
return false;
}
if (!checkValidity(corePoints.role, error))
{
assert(false);
return false;
}
//build the final SF name
QString resultSFName = ToString(type) + "_" + cloud1Label;
if (cloud2)
{
//include the math operation as well if necessary!
resultSFName += "_" + Feature::OpToString(op) + "_" + cloud2Label;
}
resultSFName += "@" + QString::number(scale);
//and the scalar field
assert(!sf1);
sf1WasAlreadyExisting = CheckSFExistence(corePoints.cloud, qPrintable(resultSFName));
if (sf1WasAlreadyExisting)
{
sf1 = PrepareSF(corePoints.cloud, qPrintable(resultSFName), generatedScalarFields, SFCollector::ALWAYS_KEEP);
if (generatedScalarFields->scalarFields.contains(sf1)) // i.e. the SF is existing but was not present at the startup of the plugin
generatedScalarFields->setBehavior(sf1, SFCollector::CAN_REMOVE);
}
else
{
sf1 = PrepareSF(corePoints.cloud, qPrintable(resultSFName), generatedScalarFields, SFCollector::CAN_REMOVE);
}
if (!sf1)
{
error = QString("Failed to prepare scalar %1 @ scale %2").arg(resultSFName).arg(scale);
return false;
}
source.name = sf1->getName();
// sf2 is not needed if sf1 was already existing!
if (cloud2 && op != Feature::NO_OPERATION && !sf1WasAlreadyExisting)
{
QString resultSFName2 = ToString(type) + "_" + cloud2Label + "@" + QString::number(scale);
assert(!sf2);
sf2WasAlreadyExisting = CheckSFExistence(corePoints.cloud, qPrintable(resultSFName2));
sf2 = PrepareSF(corePoints.cloud, qPrintable(resultSFName2), generatedScalarFields, sf2WasAlreadyExisting ? SFCollector::ALWAYS_KEEP : SFCollector::ALWAYS_REMOVE);
if (!sf2)
{
error = QString("Failed to prepare scalar field for %1 @ scale %2").arg(cloud2Label).arg(scale);
return false;
}
}
return true;
}
bool NeighborhoodFeature::finish(const CorePoints& corePoints, QString& error)
{
if (!corePoints.cloud)
{
//invalid input
assert(false);
error = "internal error (no input core points)";
return false;
}
bool success = true;
if (sf1)
{
sf1->computeMinAndMax();
//update display
//if (corePoints.cloud->getDisplay())
{
int sfIndex1 = corePoints.cloud->getScalarFieldIndexByName(sf1->getName());
corePoints.cloud->setCurrentDisplayedScalarField(sfIndex1);
//corePoints.cloud->getDisplay()->redraw();
//QCoreApplication::processEvents();
}
}
if (sf2 && !sf1WasAlreadyExisting)
{
//now perform the math operation
if (op != Feature::NO_OPERATION)
{
if (!PerformMathOp(sf1, sf2, op))
{
error = "Failed to perform the MATH operation";
success = false;
}
}
// if (keepSF2)
// {
// sf2->computeMinAndMax();
// }
// else
// {
// int sfIndex2 = corePoints.cloud->getScalarFieldIndexByName(sf2->getName());
// if (sfIndex2 >= 0)
// {
// corePoints.cloud->deleteScalarField(sfIndex2);
// }
// else
// {
// assert(false);
// sf2->release();
// }
// sf2 = nullptr;
// }
}
return success;
}
QString NeighborhoodFeature::toString() const
{
//use the default keyword + the scale
QString description = ToString(type) + "_SC" + QString::number(scale);
description += "_" + cloud1Label;
if (cloud2 && !cloud2Label.isEmpty())
{
description += "_" + cloud2Label;
if (op != NO_OPERATION)
{
description += "_" + OpToString(op);
}
}
return description;
}
bool NeighborhoodFeature::computeValue(CCCoreLib::DgmOctree::NeighboursSet& pointsInNeighbourhood, const CCVector3& queryPoint, double& outputValue) const
{
outputValue = std::numeric_limits<double>::quiet_NaN();
size_t kNN = pointsInNeighbourhood.size();
if (kNN == 0)
{
assert(false);
return false;
}
switch (type)
{
//features relying on the PCA
case PCA1:
case PCA2:
case PCA3:
case SPHER:
case LINEA:
case PLANA:
case VERT:
{
CCCoreLib::Neighbourhood::GeomFeature f;
switch (type)
{
case PCA1:
f = CCCoreLib::Neighbourhood::PCA1;
break;
case PCA2:
f = CCCoreLib::Neighbourhood::PCA2;
break;
case PCA3:
f = CCCoreLib::Neighbourhood::SurfaceVariation;
break;
case SPHER:
f = CCCoreLib::Neighbourhood::Sphericity;
break;
case LINEA:
f = CCCoreLib::Neighbourhood::Linearity;
break;
case PLANA:
f = CCCoreLib::Neighbourhood::Planarity;
break;
case VERT:
f = CCCoreLib::Neighbourhood::Verticality;
break;
default:
//impossible
assert(false);
return false;
}
CCCoreLib::DgmOctreeReferenceCloud neighboursCloud(&pointsInNeighbourhood, static_cast<unsigned>(kNN));
CCCoreLib::Neighbourhood Z(&neighboursCloud);
outputValue = Z.computeFeature(f);
}
break;
case FOM:
{
CCCoreLib::DgmOctreeReferenceCloud neighboursCloud(&pointsInNeighbourhood, static_cast<unsigned>(kNN));
CCCoreLib::Neighbourhood Z(&neighboursCloud);
outputValue = Z.computeMomentOrder1(queryPoint);
}
break;
case Dip:
case DipDir:
if (kNN >= 3)
{
CCCoreLib::DgmOctreeReferenceCloud neighboursCloud(&pointsInNeighbourhood, static_cast<unsigned>(kNN));
CCCoreLib::Neighbourhood Z(&neighboursCloud);
const CCVector3* N = Z.getLSPlaneNormal();
if (N)
{
//force +Z
CCVector3 Np = (N->z < 0 ? -CCCoreLib::PC_ONE * *N : *N);
PointCoordinateType dip_deg, dipDir_deg;
ccNormalVectors::ConvertNormalToDipAndDipDir(Np, dip_deg, dipDir_deg);
outputValue = (type == Dip ? dip_deg : dipDir_deg);
}
}
break;
case NBPTS:
outputValue = static_cast<double>(kNN);
break;
case ROUGH:
{
CCCoreLib::DgmOctreeReferenceCloud neighboursCloud(&pointsInNeighbourhood, static_cast<unsigned>(kNN));
CCCoreLib::Neighbourhood Z(&neighboursCloud);
outputValue = Z.computeRoughness(queryPoint);
}
break;
case CURV:
{
CCCoreLib::DgmOctreeReferenceCloud neighboursCloud(&pointsInNeighbourhood, static_cast<unsigned>(kNN));
CCCoreLib::Neighbourhood Z(&neighboursCloud);
outputValue = Z.computeCurvature(queryPoint, CCCoreLib::Neighbourhood::MEAN_CURV); //TODO: is it really the default one?
}
break;
case ZRANGE:
case Zmax:
case Zmin:
if (kNN >= 2)
{
PointCoordinateType minZ, maxZ;
minZ = maxZ = pointsInNeighbourhood[0].point->z;
for (size_t i = 1; i < kNN; ++i)
{
if (minZ > pointsInNeighbourhood[i].point->z)
minZ = pointsInNeighbourhood[i].point->z;
else if (maxZ < pointsInNeighbourhood[i].point->z)
maxZ = pointsInNeighbourhood[i].point->z;
}
if (type == ZRANGE)
{
outputValue = maxZ - minZ;
}
else if (type == Zmax)
{
outputValue = maxZ - queryPoint.z;
}
else if (type == Zmin)
{
outputValue = queryPoint.z - minZ;
}
else
{
//impossible
assert(false);
}
}
break;
case ANISO:
if (kNN >= 3)
{
CCCoreLib::DgmOctreeReferenceCloud neighboursCloud(&pointsInNeighbourhood, static_cast<unsigned>(kNN));
CCCoreLib::Neighbourhood Z(&neighboursCloud);
const CCVector3* G = Z.getGravityCenter();
if (G)
{
double r = sqrt(pointsInNeighbourhood.back().squareDistd);
if (r > std::numeric_limits<double>::epsilon())
{
double d = (queryPoint - *G).normd();
//Ratio of distance to center of mass and radius of sphere
outputValue = d / r;
}
}
}
break;
//case LINEF:
//case ORIENF:
default:
{
ccLog::Warning("Unhandled feature");
assert(false);
return false;
}
}
return true;
}
|