QGIS API Documentation 3.37.0-Master (fdefdf9c27f)
qgspointcloudstatscalculator.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgspointcloudstatscalculator.cpp
3 --------------------
4 begin : April 2022
5 copyright : (C) 2022 by Belgacem Nedjima
6 email : belgacem dot nedjima at gmail dot com
7 ***************************************************************************/
8
9/***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
17
19
21
22#include "qgspointcloudindex.h"
23#include "qgsmessagelog.h"
26
28
29#include "qgsfeedback.h"
31
32#include <QQueue>
33#include <QtConcurrent/QtConcurrentMap>
34
36{
39
40 StatsProcessor( QgsPointCloudIndex *index, QgsPointCloudRequest request, QgsFeedback *feedback, double progressValue )
41 : mIndex( index->clone().release() ), mRequest( request ), mFeedback( feedback ), mProgressValue( progressValue )
42 {
43 }
44
45 StatsProcessor( const StatsProcessor &processor )
46 : mIndex( processor.mIndex->clone().release() ), mRequest( processor.mRequest ), mFeedback( processor.mFeedback ), mProgressValue( processor.mProgressValue )
47 {
48 }
49
51 {
52 mIndex.reset( rhs.mIndex->clone().release() );
53 mRequest = rhs.mRequest;
54 mFeedback = rhs.mFeedback;
55 mProgressValue = rhs.mProgressValue;
56 return *this;
57 }
58
60 {
61 if ( mIndex->nodePointCount( node ) < 1 )
63
64 std::unique_ptr<QgsPointCloudBlock> block = nullptr;
65 if ( mIndex->accessType() == QgsPointCloudIndex::Local )
66 {
67 block = mIndex->nodeData( node, mRequest );
68 }
69 else
70 {
71 QgsPointCloudBlockRequest *request = mIndex->asyncNodeData( node, mRequest );
72 QEventLoop loop;
73 QObject::connect( request, &QgsPointCloudBlockRequest::finished, &loop, &QEventLoop::quit );
74 QObject::connect( mFeedback, &QgsFeedback::canceled, &loop, &QEventLoop::quit );
75 loop.exec();
76 if ( !mFeedback->isCanceled() )
77 {
78 block = request->takeBlock();
79 if ( !block )
80 {
81 QgsMessageLog::logMessage( QObject::tr( "Unable to calculate statistics for node %1, error: \"%2\"" ).arg( node.toString(), request->errorStr() ) );
82 }
83 }
84 }
85
86 if ( !block.get() )
87 {
88 updateFeedback();
90 }
91
92 const QgsPointCloudAttributeCollection attributesCollection = block->attributes();
93 const QVector<QgsPointCloudAttribute> attributes = attributesCollection.attributes();
94 const char *ptr = block->data();
95 int count = block->pointCount();
96 int recordSize = attributesCollection.pointRecordSize();
97
98 QMap<QString, QgsPointCloudAttributeStatistics> statsMap;
99 for ( const QgsPointCloudAttribute &attribute : attributes )
100 {
102 summary.minimum = std::numeric_limits<double>::max();
103 summary.maximum = std::numeric_limits<double>::lowest();
104 summary.count = 0;
105 summary.mean = 0;
106 summary.stDev = std::numeric_limits<double>::quiet_NaN();
107 summary.classCount.clear();
108 statsMap[ attribute.name() ] = summary;
109 }
110
111 QVector<int> attributeOffsetVector;
112 QSet<int> classifiableAttributesOffsetSet;
113 for ( const QgsPointCloudAttribute &attribute : attributes )
114 {
115 int attributeOffset = 0;
116 attributesCollection.find( attribute.name(), attributeOffset );
117 attributeOffsetVector.push_back( attributeOffset );
118 if ( attribute.name() == QLatin1String( "ScannerChannel" ) ||
119 attribute.name() == QLatin1String( "ReturnNumber" ) ||
120 attribute.name() == QLatin1String( "NumberOfReturns" ) ||
121 attribute.name() == QLatin1String( "ScanDirectionFlag" ) ||
122 attribute.name() == QLatin1String( "Classification" ) ||
123 attribute.name() == QLatin1String( "EdgeOfFlightLine" ) ||
124 attribute.name() == QLatin1String( "PointSourceId" ) ||
125 attribute.name() == QLatin1String( "Synthetic" ) ||
126 attribute.name() == QLatin1String( "KeyPoint" ) ||
127 attribute.name() == QLatin1String( "Withheld" ) ||
128 attribute.name() == QLatin1String( "Overlap" ) )
129 {
130 classifiableAttributesOffsetSet.insert( attributeOffset );
131 }
132 }
133
134 for ( int i = 0; i < count; ++i )
135 {
136 for ( int j = 0; j < attributes.size(); ++j )
137 {
138 if ( mFeedback->isCanceled() )
139 {
141 }
142 QString attributeName = attributes.at( j ).name();
143 QgsPointCloudAttribute::DataType attributeType = attributes.at( j ).type();
144
145 double attributeValue = 0;
146 int attributeOffset = attributeOffsetVector[ j ];
147
148 QgsPointCloudAttributeStatistics &stats = statsMap[ attributeName ];
149 QgsPointCloudRenderContext::getAttribute( ptr, i * recordSize + attributeOffset, attributeType, attributeValue );
150 stats.minimum = std::min( stats.minimum, attributeValue );
151 stats.maximum = std::max( stats.maximum, attributeValue );
152 stats.mean += attributeValue / count;
153 // TODO: add stDev calculation
154 stats.count++;
155 if ( classifiableAttributesOffsetSet.contains( attributeOffset ) )
156 {
157 stats.classCount[( int )attributeValue ]++;
158 }
159 }
160 }
161 updateFeedback();
162 return QgsPointCloudStatistics( count, statsMap );
163 }
164 private:
165 std::unique_ptr<QgsPointCloudIndex> mIndex = nullptr;
166 QgsPointCloudRequest mRequest;
167 QgsFeedback *mFeedback = nullptr;
168 double mProgressValue = 0.0;
169
170 void updateFeedback()
171 {
172 QMutexLocker locker( &sStatsProcessorFeedbackMutex );
173 mFeedback->setProgress( mFeedback->progress() + mProgressValue );
174 }
175};
176
178
180 : mIndex( index->clone() )
181{
182
183}
184
185bool QgsPointCloudStatsCalculator::calculateStats( QgsFeedback *feedback, const QVector<QgsPointCloudAttribute> &attributes, qint64 pointsLimit )
186{
187 if ( !mIndex->isValid() )
188 {
189 QgsMessageLog::logMessage( QObject::tr( "Unable to calculate statistics of an invalid index" ) );
190 return false;
191 }
192 mRequest.setAttributes( attributes );
193
194 qint64 pointCount = 0;
195 QVector<IndexedPointCloudNode> nodes;
196 QQueue<IndexedPointCloudNode> queue;
197 queue.push_back( mIndex->root() );
198 while ( !queue.empty() )
199 {
200 IndexedPointCloudNode node = queue.front();
201 queue.pop_front();
202 if ( !mProcessedNodes.contains( node ) )
203 pointCount += mIndex->nodePointCount( node );
204 if ( pointsLimit != -1 && pointCount > pointsLimit )
205 break;
206 if ( !mProcessedNodes.contains( node ) )
207 {
208 nodes.push_back( node );
209 mProcessedNodes.insert( node );
210 }
211 for ( const IndexedPointCloudNode &child : mIndex->nodeChildren( node ) )
212 {
213 queue.push_back( child );
214 }
215 }
216
217 feedback->setProgress( 0 );
218
219 QVector<QgsPointCloudStatistics> list = QtConcurrent::blockingMapped( nodes, StatsProcessor( mIndex.get(), mRequest, feedback, 100.0 / ( double )nodes.size() ) );
220
221 for ( QgsPointCloudStatistics &s : list )
222 {
223 mStats.combineWith( s );
224 }
225 return !feedback->isCanceled() && mStats.sampledPointsCount() != 0;
226}
Represents a indexed point cloud node in octree.
QString toString() const
Encode node to string.
Base class for feedback objects to be used for cancellation of something running in a worker thread.
Definition: qgsfeedback.h:44
bool isCanceled() const
Tells whether the operation has been canceled already.
Definition: qgsfeedback.h:53
void canceled()
Internal routines can connect to this signal if they use event loop.
void setProgress(double progress)
Sets the current progress for the feedback object.
Definition: qgsfeedback.h:61
double progress() const
Returns the current progress reported by the feedback object.
Definition: qgsfeedback.h:77
static void logMessage(const QString &message, const QString &tag=QString(), Qgis::MessageLevel level=Qgis::MessageLevel::Warning, bool notifyUser=true)
Adds a message to the log instance (and creates it if necessary).
Collection of point cloud attributes.
int pointRecordSize() const
Returns total size of record.
const QgsPointCloudAttribute * find(const QString &attributeName, int &offset) const
Finds the attribute with the name.
QVector< QgsPointCloudAttribute > attributes() const
Returns all attributes.
Attribute for point cloud data pair of name and size in bytes.
DataType
Systems of unit measurement.
Base class for handling loading QgsPointCloudBlock asynchronously.
QString errorStr()
Returns the error message string of the request.
void finished()
Emitted when the request processing has finished.
std::unique_ptr< QgsPointCloudBlock > takeBlock()
Returns the requested block.
Represents a indexed point clouds data in octree.
@ Local
Local means the source is a local file on the machine.
static void getAttribute(const char *data, std::size_t offset, QgsPointCloudAttribute::DataType type, T &value)
Retrieves the attribute value from data at the specified offset, where type indicates the original da...
Point cloud data request.
void setAttributes(const QgsPointCloudAttributeCollection &attributes)
Set attributes filter in the request.
Class used to store statistics of a point cloud dataset.
void combineWith(const QgsPointCloudStatistics &stats)
Merges the current statistics with the statistics from stats.
int sampledPointsCount() const
Returns the number of points used to calculate the statistics.
QgsPointCloudStatsCalculator(QgsPointCloudIndex *index)
Constructor.
bool calculateStats(QgsFeedback *feedback, const QVector< QgsPointCloudAttribute > &attributes, qint64 pointsLimit=-1)
Calculates the statistics of given attributes attributes up to new pointsLimit points Note: the alrea...
Class used to store statistics of one attribute of a point cloud dataset.
StatsProcessor(QgsPointCloudIndex *index, QgsPointCloudRequest request, QgsFeedback *feedback, double progressValue)
static QMutex sStatsProcessorFeedbackMutex
StatsProcessor(const StatsProcessor &processor)
QgsPointCloudStatistics result_type
StatsProcessor & operator=(const StatsProcessor &rhs)
QgsPointCloudStatistics operator()(IndexedPointCloudNode node)