35#include <QtConcurrent/QtConcurrentMap>
43 : mIndex( index->clone().release() ), mRequest( request ), mFeedback( feedback ), mProgressValue( progressValue )
48 : mIndex( processor.mIndex->clone().release() ), mRequest( processor.mRequest ), mFeedback( processor.mFeedback ), mProgressValue( processor.mProgressValue )
54 mIndex.reset( rhs.mIndex->clone().release() );
55 mRequest = rhs.mRequest;
56 mFeedback = rhs.mFeedback;
57 mProgressValue = rhs.mProgressValue;
63 std::unique_ptr<QgsPointCloudBlock> block =
nullptr;
66 block.reset( mIndex->nodeData( node, mRequest ) );
76 block.reset( request->
block() );
77 if ( !request->
block() )
90 const QVector<QgsPointCloudAttribute> attributes = attributesCollection.
attributes();
91 const char *ptr = block->data();
92 int count = block->pointCount();
95 QMap<QString, QgsPointCloudAttributeStatistics> statsMap;
99 summary.
minimum = std::numeric_limits<double>::max();
100 summary.
maximum = std::numeric_limits<double>::lowest();
103 summary.
stDev = std::numeric_limits<double>::quiet_NaN();
105 statsMap[ attribute.name() ] = summary;
108 QVector<int> attributeOffsetVector;
109 QSet<int> classifiableAttributesOffsetSet;
112 int attributeOffset = 0;
113 attributesCollection.
find( attribute.name(), attributeOffset );
114 attributeOffsetVector.push_back( attributeOffset );
115 if ( attribute.name() == QLatin1String(
"ScannerChannel" ) ||
116 attribute.name() == QLatin1String(
"ReturnNumber" ) ||
117 attribute.name() == QLatin1String(
"NumberOfReturns" ) ||
118 attribute.name() == QLatin1String(
"ScanDirectionFlag" ) ||
119 attribute.name() == QLatin1String(
"Classification" ) ||
120 attribute.name() == QLatin1String(
"EdgeOfFlightLine" ) ||
121 attribute.name() == QLatin1String(
"PointSourceId" ) )
123 classifiableAttributesOffsetSet.insert( attributeOffset );
127 for (
int i = 0; i < count; ++i )
129 for (
int j = 0; j < attributes.size(); ++j )
135 QString attributeName = attributes.at( j ).name();
138 double attributeValue = 0;
139 int attributeOffset = attributeOffsetVector[ j ];
145 stats.
mean += attributeValue / count;
148 if ( classifiableAttributesOffsetSet.contains( attributeOffset ) )
158 std::unique_ptr<QgsPointCloudIndex> mIndex =
nullptr;
161 double mProgressValue = 0.0;
163 void updateFeedback()
173 : mIndex( index->clone() )
180 if ( !mIndex->isValid() )
187 qint64 pointCount = 0;
188 QVector<IndexedPointCloudNode> nodes;
189 QQueue<IndexedPointCloudNode> queue;
190 queue.push_back( mIndex->root() );
191 while ( !queue.empty() )
195 if ( !mProcessedNodes.contains( node ) )
196 pointCount += mIndex->nodePointCount( node );
197 if ( pointsLimit != -1 && pointCount > pointsLimit )
199 if ( !mProcessedNodes.contains( node ) )
201 nodes.push_back( node );
202 mProcessedNodes.insert( node );
206 queue.push_back( child );
212 QVector<QgsPointCloudStatistics> list = QtConcurrent::blockingMapped( nodes,
StatsProcessor( mIndex.get(), mRequest, feedback, 100.0 / (
double )nodes.size() ) );
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.
void canceled()
Internal routines can connect to this signal if they use event loop.
double progress() const SIP_HOLDGIL
Returns the current progress reported by the feedback object.
bool isCanceled() const SIP_HOLDGIL
Tells whether the operation has been canceled already.
void setProgress(double progress)
Sets the current progress for the feedback object.
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.
QgsPointCloudBlock * block()
Returns the requested block.
void finished()
Emitted when the request processing has finished.
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.
QMap< int, int > classCount
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)