QGIS API Documentation 3.35.0-Master (728e5967df5)
Loading...
Searching...
No Matches
qgspointcloudlayerrenderer.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgspointcloudlayerrenderer.cpp
3 --------------------
4 begin : October 2020
5 copyright : (C) 2020 by Peter Petrik
6 email : zilolv 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
18#include <QElapsedTimer>
19#include <QPointer>
20
22#include "qgspointcloudlayer.h"
23#include "qgsrendercontext.h"
24#include "qgspointcloudindex.h"
25#include "qgscolorramp.h"
26#include "qgselevationmap.h"
27#include "qgsmeshlayerutils.h"
32#include "qgslogger.h"
34#include "qgsmessagelog.h"
35#include "qgsmapclippingutils.h"
37#include "qgsruntimeprofiler.h"
38#include "qgsapplication.h"
39
40#include <delaunator.hpp>
41
42
44 : QgsMapLayerRenderer( layer->id(), &context )
45 , mLayer( layer )
46 , mLayerName( layer->name() )
47 , mLayerAttributes( layer->attributes() )
48 , mSubIndexes( layer && layer->dataProvider() ? layer->dataProvider()->subIndexes() : QVector<QgsPointCloudSubIndex>() )
49 , mFeedback( new QgsFeedback )
50 , mEnableProfile( context.flags() & Qgis::RenderContextFlag::RecordProfile )
51{
52 // TODO: we must not keep pointer to mLayer (it's dangerous) - we must copy anything we need for rendering
53 // or use some locking to prevent read/write from multiple threads
54 if ( !mLayer || !mLayer->dataProvider() || !mLayer->renderer() )
55 return;
56
57 QElapsedTimer timer;
58 timer.start();
59
60 mRenderer.reset( mLayer->renderer()->clone() );
61 if ( !mSubIndexes.isEmpty() )
62 mSubIndexExtentRenderer.reset( new QgsPointCloudExtentRenderer() );
63
64 if ( mLayer->dataProvider()->index() )
65 {
66 mScale = mLayer->dataProvider()->index()->scale();
67 mOffset = mLayer->dataProvider()->index()->offset();
68 }
69
70 if ( const QgsPointCloudLayerElevationProperties *elevationProps = qobject_cast< const QgsPointCloudLayerElevationProperties * >( mLayer->elevationProperties() ) )
71 {
72 mZOffset = elevationProps->zOffset();
73 mZScale = elevationProps->zScale();
74 }
75
76 mCloudExtent = mLayer->dataProvider()->polygonBounds();
77
79
80 mReadyToCompose = false;
81
82 mPreparationTime = timer.elapsed();
83}
84
86{
87 std::unique_ptr< QgsScopedRuntimeProfile > profile;
88 if ( mEnableProfile )
89 {
90 profile = std::make_unique< QgsScopedRuntimeProfile >( mLayerName, QStringLiteral( "rendering" ), layerId() );
91 if ( mPreparationTime > 0 )
92 QgsApplication::profiler()->record( QObject::tr( "Create renderer" ), mPreparationTime / 1000.0, QStringLiteral( "rendering" ) );
93 }
94
95 std::unique_ptr< QgsScopedRuntimeProfile > preparingProfile;
96 if ( mEnableProfile )
97 {
98 preparingProfile = std::make_unique< QgsScopedRuntimeProfile >( QObject::tr( "Preparing render" ), QStringLiteral( "rendering" ) );
99 }
100
101 QgsPointCloudRenderContext context( *renderContext(), mScale, mOffset, mZScale, mZOffset, mFeedback.get() );
102
103 // Set up the render configuration options
104 QPainter *painter = context.renderContext().painter();
105
106 QgsScopedQPainterState painterState( painter );
107 context.renderContext().setPainterFlagsUsingContext( painter );
108
109 if ( !mClippingRegions.empty() )
110 {
111 bool needsPainterClipPath = false;
112 const QPainterPath path = QgsMapClippingUtils::calculatePainterClipRegion( mClippingRegions, *renderContext(), Qgis::LayerType::VectorTile, needsPainterClipPath );
113 if ( needsPainterClipPath )
114 renderContext()->painter()->setClipPath( path, Qt::IntersectClip );
115 }
116
117 if ( mRenderer->type() == QLatin1String( "extent" ) )
118 {
119 // special case for extent only renderer!
120 mRenderer->startRender( context );
121 static_cast< QgsPointCloudExtentRenderer * >( mRenderer.get() )->renderExtent( mCloudExtent, context );
122 mRenderer->stopRender( context );
123 mReadyToCompose = true;
124 return true;
125 }
126
127 // TODO cache!?
128 QgsPointCloudIndex *pc = mLayer->dataProvider()->index();
129 if ( mSubIndexes.isEmpty() &&
130 ( !pc || !pc->isValid() ) )
131 {
132 mReadyToCompose = true;
133 return false;
134 }
135
136 // if the previous layer render was relatively quick (e.g. less than 3 seconds), the we show any previously
137 // cached version of the layer during rendering instead of the usual progressive updates
138 if ( mRenderTimeHint > 0 && mRenderTimeHint <= MAX_TIME_TO_USE_CACHED_PREVIEW_IMAGE )
139 {
140 mBlockRenderUpdates = true;
141 mElapsedTimer.start();
142 }
143
144 mRenderer->startRender( context );
145
146 mAttributes.push_back( QgsPointCloudAttribute( QStringLiteral( "X" ), QgsPointCloudAttribute::Int32 ) );
147 mAttributes.push_back( QgsPointCloudAttribute( QStringLiteral( "Y" ), QgsPointCloudAttribute::Int32 ) );
148
149 if ( !context.renderContext().zRange().isInfinite() ||
150 mRenderer->drawOrder2d() == Qgis::PointCloudDrawOrder::BottomToTop ||
151 mRenderer->drawOrder2d() == Qgis::PointCloudDrawOrder::TopToBottom ||
153 mAttributes.push_back( QgsPointCloudAttribute( QStringLiteral( "Z" ), QgsPointCloudAttribute::Int32 ) );
154
155 // collect attributes required by renderer
156 QSet< QString > rendererAttributes = mRenderer->usedAttributes( context );
157
158
159 for ( const QString &attribute : std::as_const( rendererAttributes ) )
160 {
161 if ( mAttributes.indexOf( attribute ) >= 0 )
162 continue; // don't re-add attributes we are already going to fetch
163
164 const int layerIndex = mLayerAttributes.indexOf( attribute );
165 if ( layerIndex < 0 )
166 {
167 QgsMessageLog::logMessage( QObject::tr( "Required attribute %1 not found in layer" ).arg( attribute ), QObject::tr( "Point Cloud" ) );
168 continue;
169 }
170
171 mAttributes.push_back( mLayerAttributes.at( layerIndex ) );
172 }
173
174 QgsRectangle renderExtent;
175 try
176 {
178 }
179 catch ( QgsCsException & )
180 {
181 QgsDebugError( QStringLiteral( "Transformation of extent failed!" ) );
182 }
183
184 preparingProfile.reset();
185 std::unique_ptr< QgsScopedRuntimeProfile > renderingProfile;
186 if ( mEnableProfile )
187 {
188 renderingProfile = std::make_unique< QgsScopedRuntimeProfile >( QObject::tr( "Rendering" ), QStringLiteral( "rendering" ) );
189 }
190
191 bool canceled = false;
192 if ( mSubIndexes.isEmpty() )
193 {
194 canceled = !renderIndex( pc );
195 }
196 else
197 {
198 mSubIndexExtentRenderer->startRender( context );
199 for ( const auto &si : mSubIndexes )
200 {
201 if ( canceled )
202 break;
203
204 QgsPointCloudIndex *pc = si.index();
205
206 if ( !renderExtent.intersects( si.extent() ) )
207 continue;
208
209 if ( !pc || !pc->isValid() || renderExtent.width() > si.extent().width() )
210 {
211 // when dealing with virtual point clouds, we want to render the individual extents when zoomed out
212 // and only use the selected renderer when zoomed in
213 mSubIndexExtentRenderer->renderExtent( si.polygonBounds(), context );
214 }
215 else
216 {
217 canceled = !renderIndex( pc );
218 }
219 }
220 mSubIndexExtentRenderer->stopRender( context );
221 }
222
223 mRenderer->stopRender( context );
224 mReadyToCompose = true;
225 return !canceled;
226}
227
228bool QgsPointCloudLayerRenderer::renderIndex( QgsPointCloudIndex *pc )
229{
231 pc->scale(),
232 pc->offset(),
233 mZScale,
234 mZOffset,
235 mFeedback.get() );
236
237
238#ifdef QGISDEBUG
239 QElapsedTimer t;
240 t.start();
241#endif
242
243 const IndexedPointCloudNode root = pc->root();
244
245 const double maximumError = context.renderContext().convertToPainterUnits( mRenderer->maximumScreenError(), mRenderer->maximumScreenErrorUnit() );// in pixels
246
247 const QgsRectangle rootNodeExtentLayerCoords = pc->nodeMapExtent( root );
248 QgsRectangle rootNodeExtentMapCoords;
249 if ( !context.renderContext().coordinateTransform().isShortCircuited() )
250 {
251 try
252 {
253 QgsCoordinateTransform extentTransform = context.renderContext().coordinateTransform();
254 extentTransform.setBallparkTransformsAreAppropriate( true );
255 rootNodeExtentMapCoords = extentTransform.transformBoundingBox( rootNodeExtentLayerCoords );
256 }
257 catch ( QgsCsException & )
258 {
259 QgsDebugError( QStringLiteral( "Could not transform node extent to map CRS" ) );
260 rootNodeExtentMapCoords = rootNodeExtentLayerCoords;
261 }
262 }
263 else
264 {
265 rootNodeExtentMapCoords = rootNodeExtentLayerCoords;
266 }
267
268 const double rootErrorInMapCoordinates = rootNodeExtentMapCoords.width() / pc->span(); // in map coords
269
270 double mapUnitsPerPixel = context.renderContext().mapToPixel().mapUnitsPerPixel();
271 if ( ( rootErrorInMapCoordinates < 0.0 ) || ( mapUnitsPerPixel < 0.0 ) || ( maximumError < 0.0 ) )
272 {
273 QgsDebugError( QStringLiteral( "invalid screen error" ) );
274 return false;
275 }
276 double rootErrorPixels = rootErrorInMapCoordinates / mapUnitsPerPixel; // in pixels
277 const QVector<IndexedPointCloudNode> nodes = traverseTree( pc, context.renderContext(), pc->root(), maximumError, rootErrorPixels );
278
279 QgsPointCloudRequest request;
280 request.setAttributes( mAttributes );
281
282 // drawing
283 int nodesDrawn = 0;
284 bool canceled = false;
285
286 Qgis::PointCloudDrawOrder drawOrder = mRenderer->drawOrder2d();
287 if ( mRenderer->renderAsTriangles() )
288 {
289 // Ordered rendering is ignored when drawing as surface, because all points are used for triangulation.
290 // We would need to have a way to detect if a point is occluded by some other points, which may be costly.
292 }
293
294 switch ( drawOrder )
295 {
298 {
299 nodesDrawn += renderNodesSorted( nodes, pc, context, request, canceled, mRenderer->drawOrder2d() );
300 break;
301 }
303 {
304 switch ( pc->accessType() )
305 {
307 {
308 nodesDrawn += renderNodesSync( nodes, pc, context, request, canceled );
309 break;
310 }
312 {
313 nodesDrawn += renderNodesAsync( nodes, pc, context, request, canceled );
314 break;
315 }
316 }
317 }
318 }
319
320#ifdef QGISDEBUG
321 QgsDebugMsgLevel( QStringLiteral( "totals: %1 nodes | %2 points | %3ms" ).arg( nodesDrawn )
322 .arg( context.pointsRendered() )
323 .arg( t.elapsed() ), 2 );
324#else
325 ( void )nodesDrawn;
326#endif
327
328 return !canceled;
329}
330
331int QgsPointCloudLayerRenderer::renderNodesSync( const QVector<IndexedPointCloudNode> &nodes, QgsPointCloudIndex *pc, QgsPointCloudRenderContext &context, QgsPointCloudRequest &request, bool &canceled )
332{
333 int nodesDrawn = 0;
334 for ( const IndexedPointCloudNode &n : nodes )
335 {
336 if ( context.renderContext().renderingStopped() )
337 {
338 QgsDebugMsgLevel( QStringLiteral( "canceled" ), 2 );
339 canceled = true;
340 break;
341 }
342 std::unique_ptr<QgsPointCloudBlock> block( pc->nodeData( n, request ) );
343
344 if ( !block )
345 continue;
346
347 QgsVector3D contextScale = context.scale();
348 QgsVector3D contextOffset = context.offset();
349
350 context.setScale( block->scale() );
351 context.setOffset( block->offset() );
352
353 context.setAttributes( block->attributes() );
354
355 mRenderer->renderBlock( block.get(), context );
356
357 context.setScale( contextScale );
358 context.setOffset( contextOffset );
359
360 ++nodesDrawn;
361
362 // as soon as first block is rendered, we can start showing layer updates.
363 // but if we are blocking render updates (so that a previously cached image is being shown), we wait
364 // at most e.g. 3 seconds before we start forcing progressive updates.
365 if ( !mBlockRenderUpdates || mElapsedTimer.elapsed() > MAX_TIME_TO_USE_CACHED_PREVIEW_IMAGE )
366 {
367 mReadyToCompose = true;
368 }
369 }
370
371 if ( mRenderer->renderAsTriangles() )
372 {
373 renderTriangulatedSurface( context );
374 }
375
376 return nodesDrawn;
377}
378
379int QgsPointCloudLayerRenderer::renderNodesAsync( const QVector<IndexedPointCloudNode> &nodes, QgsPointCloudIndex *pc, QgsPointCloudRenderContext &context, QgsPointCloudRequest &request, bool &canceled )
380{
381 int nodesDrawn = 0;
382
383 if ( context.feedback() && context.feedback()->isCanceled() )
384 return 0;
385
386 // Async loading of nodes
387 QVector<QgsPointCloudBlockRequest *> blockRequests;
388 QEventLoop loop;
389 if ( context.feedback() )
390 QObject::connect( context.feedback(), &QgsFeedback::canceled, &loop, &QEventLoop::quit );
391
392 for ( int i = 0; i < nodes.size(); ++i )
393 {
394 const IndexedPointCloudNode &n = nodes[i];
395 const QString nStr = n.toString();
396 QgsPointCloudBlockRequest *blockRequest = pc->asyncNodeData( n, request );
397 blockRequests.append( blockRequest );
398 QObject::connect( blockRequest, &QgsPointCloudBlockRequest::finished, &loop,
399 [ this, &canceled, &nodesDrawn, &loop, &blockRequests, &context, nStr, blockRequest ]()
400 {
401 blockRequests.removeOne( blockRequest );
402
403 // If all blocks are loaded, exit the event loop
404 if ( blockRequests.isEmpty() )
405 loop.exit();
406
407 std::unique_ptr<QgsPointCloudBlock> block( blockRequest->takeBlock() );
408
409 blockRequest->deleteLater();
410
411 if ( context.feedback() && context.feedback()->isCanceled() )
412 {
413 canceled = true;
414 return;
415 }
416
417 if ( !block )
418 {
419 QgsDebugError( QStringLiteral( "Unable to load node %1, error: %2" ).arg( nStr, blockRequest->errorStr() ) );
420 return;
421 }
422
423 QgsVector3D contextScale = context.scale();
424 QgsVector3D contextOffset = context.offset();
425
426 context.setScale( block->scale() );
427 context.setOffset( block->offset() );
428 context.setAttributes( block->attributes() );
429
430 mRenderer->renderBlock( block.get(), context );
431
432 context.setScale( contextScale );
433 context.setOffset( contextOffset );
434
435 ++nodesDrawn;
436
437 // as soon as first block is rendered, we can start showing layer updates.
438 // but if we are blocking render updates (so that a previously cached image is being shown), we wait
439 // at most e.g. 3 seconds before we start forcing progressive updates.
440 if ( !mBlockRenderUpdates || mElapsedTimer.elapsed() > MAX_TIME_TO_USE_CACHED_PREVIEW_IMAGE )
441 {
442 mReadyToCompose = true;
443 }
444
445 } );
446 }
447
448 // Wait for all point cloud nodes to finish loading
449 loop.exec();
450
451 // Rendering may have got canceled and the event loop exited before finished()
452 // was called for all blocks, so let's clean up anything that is left
453 for ( QgsPointCloudBlockRequest *blockRequest : std::as_const( blockRequests ) )
454 {
455 std::unique_ptr<QgsPointCloudBlock> block = blockRequest->takeBlock();
456 block.reset();
457
458 blockRequest->deleteLater();
459 }
460
461 if ( mRenderer->renderAsTriangles() )
462 {
463 renderTriangulatedSurface( context );
464 }
465
466 return nodesDrawn;
467}
468
469int QgsPointCloudLayerRenderer::renderNodesSorted( const QVector<IndexedPointCloudNode> &nodes, QgsPointCloudIndex *pc, QgsPointCloudRenderContext &context, QgsPointCloudRequest &request, bool &canceled, Qgis::PointCloudDrawOrder order )
470{
471 int blockCount = 0;
472 int pointCount = 0;
473
474 QgsVector3D blockScale;
475 QgsVector3D blockOffset;
476 QgsPointCloudAttributeCollection blockAttributes;
477 int recordSize = 0;
478
479 // We'll collect byte array data from all blocks
480 QByteArray allByteArrays;
481 // And pairs of byte array start positions paired with their Z values for sorting
482 QVector<QPair<int, double>> allPairs;
483
484 for ( const IndexedPointCloudNode &n : nodes )
485 {
486 if ( context.renderContext().renderingStopped() )
487 {
488 QgsDebugMsgLevel( QStringLiteral( "canceled" ), 2 );
489 canceled = true;
490 break;
491 }
492 std::unique_ptr<QgsPointCloudBlock> block( pc->nodeData( n, request ) );
493
494 if ( !block )
495 continue;
496
497 // Individual nodes may have different offset values than the root node
498 // we'll calculate the differences and translate x,y,z values to use the root node's offset
499 QgsVector3D offsetDifference = QgsVector3D( 0, 0, 0 );
500 if ( blockCount == 0 )
501 {
502 blockScale = block->scale();
503 blockOffset = block->offset();
504 blockAttributes = block->attributes();
505 }
506 else
507 {
508 offsetDifference = blockOffset - block->offset();
509 }
510
511 const char *ptr = block->data();
512
513 context.setScale( block->scale() );
514 context.setOffset( block->offset() );
515 context.setAttributes( block->attributes() );
516
517 recordSize = context.pointRecordSize();
518
519 for ( int i = 0; i < block->pointCount(); ++i )
520 {
521 allByteArrays.append( ptr + i * recordSize, recordSize );
522
523 // Calculate the translated values only for axes that have a different offset
524 if ( offsetDifference.x() != 0 )
525 {
526 qint32 ix = *reinterpret_cast< const qint32 * >( ptr + i * recordSize + context.xOffset() );
527 ix -= std::lround( offsetDifference.x() / context.scale().x() );
528 const char *xPtr = reinterpret_cast< const char * >( &ix );
529 allByteArrays.replace( pointCount * recordSize + context.xOffset(), 4, QByteArray( xPtr, 4 ) );
530 }
531 if ( offsetDifference.y() != 0 )
532 {
533 qint32 iy = *reinterpret_cast< const qint32 * >( ptr + i * recordSize + context.yOffset() );
534 iy -= std::lround( offsetDifference.y() / context.scale().y() );
535 const char *yPtr = reinterpret_cast< const char * >( &iy );
536 allByteArrays.replace( pointCount * recordSize + context.yOffset(), 4, QByteArray( yPtr, 4 ) );
537 }
538 // We need the Z value regardless of the node's offset
539 qint32 iz = *reinterpret_cast< const qint32 * >( ptr + i * recordSize + context.zOffset() );
540 if ( offsetDifference.z() != 0 )
541 {
542 iz -= std::lround( offsetDifference.z() / context.scale().z() );
543 const char *zPtr = reinterpret_cast< const char * >( &iz );
544 allByteArrays.replace( pointCount * recordSize + context.zOffset(), 4, QByteArray( zPtr, 4 ) );
545 }
546 allPairs.append( qMakePair( pointCount, double( iz ) + block->offset().z() ) );
547
548 ++pointCount;
549 }
550 ++blockCount;
551 }
552
553 if ( pointCount == 0 )
554 return 0;
555
556 switch ( order )
557 {
559 std::sort( allPairs.begin(), allPairs.end(), []( QPair<int, double> a, QPair<int, double> b ) { return a.second < b.second; } );
560 break;
562 std::sort( allPairs.begin(), allPairs.end(), []( QPair<int, double> a, QPair<int, double> b ) { return a.second > b.second; } );
563 break;
565 break;
566 }
567
568 // Now we can reconstruct a byte array sorted by Z value
569 QByteArray sortedByteArray;
570 sortedByteArray.reserve( allPairs.size() );
571 for ( QPair<int, double> pair : allPairs )
572 sortedByteArray.append( allByteArrays.mid( pair.first * recordSize, recordSize ) );
573
574 std::unique_ptr<QgsPointCloudBlock> bigBlock { new QgsPointCloudBlock( pointCount,
575 blockAttributes,
576 sortedByteArray,
577 blockScale,
578 blockOffset ) };
579
580 QgsVector3D contextScale = context.scale();
581 QgsVector3D contextOffset = context.offset();
582
583 context.setScale( bigBlock->scale() );
584 context.setOffset( bigBlock->offset() );
585 context.setAttributes( bigBlock->attributes() );
586
587 mRenderer->renderBlock( bigBlock.get(), context );
588
589 context.setScale( contextScale );
590 context.setOffset( contextOffset );
591
592 return blockCount;
593}
594
595inline bool isEdgeTooLong( const QPointF &p1, const QPointF &p2, float length )
596{
597 QPointF p = p1 - p2;
598 return p.x() * p.x() + p.y() * p.y() > length;
599}
600
601static void renderTriangle( QImage &img, QPointF *pts, QRgb c0, QRgb c1, QRgb c2, float horizontalFilter, float *elev, QgsElevationMap *elevationMap )
602{
603 if ( horizontalFilter > 0 )
604 {
605 float filterThreshold2 = horizontalFilter * horizontalFilter;
606 if ( isEdgeTooLong( pts[0], pts[1], filterThreshold2 ) ||
607 isEdgeTooLong( pts[1], pts[2], filterThreshold2 ) ||
608 isEdgeTooLong( pts[2], pts[0], filterThreshold2 ) )
609 return;
610 }
611
612 QgsRectangle screenBBox = QgsMeshLayerUtils::triangleBoundingBox( pts[0], pts[1], pts[2] );
613
614 QSize outputSize = img.size();
615
616 int topLim = std::max( int( screenBBox.yMinimum() ), 0 );
617 int bottomLim = std::min( int( screenBBox.yMaximum() ), outputSize.height() - 1 );
618 int leftLim = std::max( int( screenBBox.xMinimum() ), 0 );
619 int rightLim = std::min( int( screenBBox.xMaximum() ), outputSize.width() - 1 );
620
621 int red0 = qRed( c0 ), green0 = qGreen( c0 ), blue0 = qBlue( c0 );
622 int red1 = qRed( c1 ), green1 = qGreen( c1 ), blue1 = qBlue( c1 );
623 int red2 = qRed( c2 ), green2 = qGreen( c2 ), blue2 = qBlue( c2 );
624
625 QRgb *elevData = elevationMap ? elevationMap->rawElevationImageData() : nullptr;
626
627 for ( int j = topLim; j <= bottomLim; j++ )
628 {
629 QRgb *scanLine = ( QRgb * ) img.scanLine( j );
630 QRgb *elevScanLine = elevData ? elevData + static_cast<size_t>( outputSize.width() * j ) : nullptr;
631 for ( int k = leftLim; k <= rightLim; k++ )
632 {
633 QPointF pt( k, j );
634 double lam1, lam2, lam3;
635 if ( !QgsMeshLayerUtils::calculateBarycentricCoordinates( pts[0], pts[1], pts[2], pt, lam3, lam2, lam1 ) )
636 continue;
637
638 // interpolate color
639 int r = static_cast<int>( red0 * lam1 + red1 * lam2 + red2 * lam3 );
640 int g = static_cast<int>( green0 * lam1 + green1 * lam2 + green2 * lam3 );
641 int b = static_cast<int>( blue0 * lam1 + blue1 * lam2 + blue2 * lam3 );
642 scanLine[k] = qRgb( r, g, b );
643
644 // interpolate elevation - in case we are doing global map shading
645 if ( elevScanLine )
646 {
647 float z = static_cast<float>( elev[0] * lam1 + elev[1] * lam2 + elev[2] * lam3 );
648 elevScanLine[k] = QgsElevationMap::encodeElevation( z );
649 }
650 }
651 }
652}
653
654void QgsPointCloudLayerRenderer::renderTriangulatedSurface( QgsPointCloudRenderContext &context )
655{
657 const std::vector<double> &points = triangulation.points;
658
659 // Delaunator would crash if it gets less than three points
660 if ( points.size() < 3 )
661 {
662 QgsDebugMsgLevel( QStringLiteral( "Need at least 3 points to triangulate" ), 4 );
663 return;
664 }
665
666 std::unique_ptr<delaunator::Delaunator> delaunator;
667 try
668 {
669 delaunator.reset( new delaunator::Delaunator( points ) );
670 }
671 catch ( std::exception &e )
672 {
673 // something went wrong, better to retrieve initial state
674 QgsDebugMsgLevel( QStringLiteral( "Error with triangulation" ), 4 );
675 return;
676 }
677
678 float horizontalFilter = 0;
679 if ( mRenderer->horizontalTriangleFilter() )
680 {
681 horizontalFilter = static_cast<float>( renderContext()->convertToPainterUnits(
682 mRenderer->horizontalTriangleFilterThreshold(), mRenderer->horizontalTriangleFilterUnit() ) );
683 }
684
685 QImage img( context.renderContext().deviceOutputSize(), QImage::Format_ARGB32_Premultiplied );
686 img.setDevicePixelRatio( context.renderContext().devicePixelRatio() );
687 img.fill( 0 );
688
689 const std::vector<size_t> &triangleIndexes = delaunator->triangles;
690 QPainter *painter = context.renderContext().painter();
691 QgsElevationMap *elevationMap = context.renderContext().elevationMap();
692 QPointF triangle[3];
693 float elev[3];
694 for ( size_t i = 0; i < triangleIndexes.size(); i += 3 )
695 {
696 size_t v0 = triangleIndexes[i], v1 = triangleIndexes[i + 1], v2 = triangleIndexes[i + 2];
697 triangle[0].rx() = points[v0 * 2];
698 triangle[0].ry() = points[v0 * 2 + 1];
699 triangle[1].rx() = points[v1 * 2];
700 triangle[1].ry() = points[v1 * 2 + 1];
701 triangle[2].rx() = points[v2 * 2];
702 triangle[2].ry() = points[v2 * 2 + 1];
703
704 if ( elevationMap )
705 {
706 elev[0] = triangulation.elevations[v0];
707 elev[1] = triangulation.elevations[v1];
708 elev[2] = triangulation.elevations[v2];
709 }
710
711 QRgb c0 = triangulation.colors[v0], c1 = triangulation.colors[v1], c2 = triangulation.colors[v2];
712 renderTriangle( img, triangle, c0, c1, c2, horizontalFilter, elev, elevationMap );
713 }
714
715 painter->drawImage( 0, 0, img );
716}
717
719{
720 // unless we are using the extent only renderer, point cloud layers should always be rasterized -- we don't want to export points as vectors
721 // to formats like PDF!
722 return mRenderer ? mRenderer->type() != QLatin1String( "extent" ) : false;
723}
724
726{
727 mRenderTimeHint = time;
728}
729
730QVector<IndexedPointCloudNode> QgsPointCloudLayerRenderer::traverseTree( const QgsPointCloudIndex *pc,
731 const QgsRenderContext &context,
733 double maxErrorPixels,
734 double nodeErrorPixels )
735{
736 QVector<IndexedPointCloudNode> nodes;
737
738 if ( context.renderingStopped() )
739 {
740 QgsDebugMsgLevel( QStringLiteral( "canceled" ), 2 );
741 return nodes;
742 }
743
744 if ( !context.extent().intersects( pc->nodeMapExtent( n ) ) )
745 return nodes;
746
747 const QgsDoubleRange nodeZRange = pc->nodeZRange( n );
748 const QgsDoubleRange adjustedNodeZRange = QgsDoubleRange( nodeZRange.lower() + mZOffset, nodeZRange.upper() + mZOffset );
749 if ( !context.zRange().isInfinite() && !context.zRange().overlaps( adjustedNodeZRange ) )
750 return nodes;
751
752 if ( pc->nodePointCount( n ) > 0 )
753 nodes.append( n );
754
755 double childrenErrorPixels = nodeErrorPixels / 2.0;
756 if ( childrenErrorPixels < maxErrorPixels )
757 return nodes;
758
759 const QList<IndexedPointCloudNode> children = pc->nodeChildren( n );
760 for ( const IndexedPointCloudNode &nn : children )
761 {
762 nodes += traverseTree( pc, context, nn, maxErrorPixels, childrenErrorPixels );
763 }
764
765 return nodes;
766}
767
Represents a indexed point cloud node in octree.
QString toString() const
Encode node to string.
The Qgis class provides global constants for use throughout the application.
Definition qgis.h:54
PointCloudDrawOrder
Pointcloud rendering order for 2d views.
Definition qgis.h:2966
@ BottomToTop
Draw points with larger Z values last.
@ Default
Draw points in the order they are stored.
@ TopToBottom
Draw points with larger Z values first.
@ VectorTile
Vector tile layer. Added in QGIS 3.14.
@ Reverse
Reverse/inverse transform (from destination to source)
static QgsRuntimeProfiler * profiler()
Returns the application runtime profiler.
Class for doing transforms between two map coordinate systems.
void setBallparkTransformsAreAppropriate(bool appropriate)
Sets whether approximate "ballpark" results are appropriate for this coordinate transform.
QgsRectangle transformBoundingBox(const QgsRectangle &rectangle, Qgis::TransformDirection direction=Qgis::TransformDirection::Forward, bool handle180Crossover=false) const
Transforms a rectangle from the source CRS to the destination CRS.
Custom exception class for Coordinate Reference System related exceptions.
QgsRange which stores a range of double values.
Definition qgsrange.h:203
bool isInfinite() const
Returns true if the range consists of all possible values.
Definition qgsrange.h:247
Stores digital elevation model in a raster image which may get updated as a part of map layer renderi...
static QRgb encodeElevation(float z)
Converts elevation value to an actual color.
QRgb * rawElevationImageData()
Returns pointer to the actual elevation image data.
Base class for feedback objects to be used for cancellation of something running in a worker thread.
Definition qgsfeedback.h:45
bool isCanceled() const
Tells whether the operation has been canceled already.
Definition qgsfeedback.h:54
void canceled()
Internal routines can connect to this signal if they use event loop.
static QPainterPath calculatePainterClipRegion(const QList< QgsMapClippingRegion > &regions, const QgsRenderContext &context, Qgis::LayerType layerType, bool &shouldClip)
Returns a QPainterPath representing the intersection of clipping regions from context which should be...
static QList< QgsMapClippingRegion > collectClippingRegionsForLayer(const QgsRenderContext &context, const QgsMapLayer *layer)
Collects the list of map clipping regions from a context which apply to a map layer.
Base class for utility classes that encapsulate information necessary for rendering of map layers.
bool mReadyToCompose
The flag must be set to false in renderer's constructor if wants to use the smarter map redraws funct...
static constexpr int MAX_TIME_TO_USE_CACHED_PREVIEW_IMAGE
Maximum time (in ms) to allow display of a previously cached preview image while rendering layers,...
QString layerId() const
Gets access to the ID of the layer rendered by this class.
QgsRenderContext * renderContext()
Returns the render context associated with the renderer.
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.
void push_back(const QgsPointCloudAttribute &attribute)
Adds extra attribute.
const QgsPointCloudAttribute & at(int index) const
Returns the attribute at the specified index.
QVector< QgsPointCloudAttribute > attributes() const
Returns all attributes.
int indexOf(const QString &name) const
Returns the index of the attribute with the specified name.
Attribute for point cloud data pair of name and size in bytes.
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.
Base class for storing raw data from point cloud nodes.
virtual QgsPointCloudIndex * index() const
Returns the point cloud index associated with the provider.
virtual QgsGeometry polygonBounds() const
Returns the polygon bounds of the layer.
A renderer for 2d visualisation of point clouds which shows the dataset's extents using a fill symbol...
Represents a indexed point clouds data in octree.
int span() const
Returns the number of points in one direction in a single node.
virtual qint64 nodePointCount(const IndexedPointCloudNode &n) const
Returns the number of points of a given node n.
QgsRectangle nodeMapExtent(const IndexedPointCloudNode &node) const
Returns the extent of a node in map coordinates.
virtual QgsPointCloudBlockRequest * asyncNodeData(const IndexedPointCloudNode &n, const QgsPointCloudRequest &request)=0
Returns a handle responsible for loading a node data block.
virtual QList< IndexedPointCloudNode > nodeChildren(const IndexedPointCloudNode &n) const
Returns all children of node.
@ Remote
Remote means it's loaded through a protocol like HTTP.
@ Local
Local means the source is a local file on the machine.
QgsVector3D offset() const
Returns offset.
QgsVector3D scale() const
Returns scale.
virtual AccessType accessType() const =0
Returns the access type of the data If the access type is Remote, data will be fetched from an HTTP s...
virtual bool isValid() const =0
Returns whether index is loaded and valid.
IndexedPointCloudNode root()
Returns root node of the index.
QgsDoubleRange nodeZRange(const IndexedPointCloudNode &node) const
Returns the z range of a node.
virtual std::unique_ptr< QgsPointCloudBlock > nodeData(const IndexedPointCloudNode &n, const QgsPointCloudRequest &request)=0
Returns node data block.
Point cloud layer specific subclass of QgsMapLayerElevationProperties.
bool forceRasterRender() const override
Returns true if the renderer must be rendered to a raster paint device (e.g.
QgsPointCloudLayerRenderer(QgsPointCloudLayer *layer, QgsRenderContext &context)
Ctor.
void setLayerRenderingTimeHint(int time) override
Sets approximate render time (in ms) for the layer to render.
bool render() override
Do the rendering (based on data stored in the class).
Represents a map layer supporting display of point clouds.
QgsMapLayerElevationProperties * elevationProperties() override
Returns the layer's elevation properties.
QgsPointCloudRenderer * renderer()
Returns the 2D renderer for the point cloud.
QgsPointCloudDataProvider * dataProvider() override
Returns the layer's data provider, it may be nullptr.
Encapsulates the render context for a 2D point cloud rendering operation.
int yOffset() const
Returns the offset for the y value in a point record.
QgsVector3D offset() const
Returns the offset of the layer's int32 coordinates compared to CRS coords.
QgsRenderContext & renderContext()
Returns a reference to the context's render context.
void setOffset(const QgsVector3D &offset)
Sets the offset of the layer's int32 coordinates compared to CRS coords.
void setScale(const QgsVector3D &scale)
Sets the scale of the layer's int32 coordinates compared to CRS coords.
int pointRecordSize() const
Returns the size of a single point record.
int xOffset() const
Returns the offset for the x value in a point record.
QgsVector3D scale() const
Returns the scale of the layer's int32 coordinates compared to CRS coords.
TriangulationData & triangulationData()
Returns reference to the triangulation data structure (only used when rendering as triangles is enabl...
int zOffset() const
Returns the offset for the y value in a point record.
QgsFeedback * feedback() const
Returns the feedback object used to cancel rendering.
void setAttributes(const QgsPointCloudAttributeCollection &attributes)
Sets the attributes associated with the rendered block.
virtual QgsPointCloudRenderer * clone() const =0
Create a deep copy of this renderer.
Point cloud data request.
void setAttributes(const QgsPointCloudAttributeCollection &attributes)
Set attributes filter in the request.
bool overlaps(const QgsRange< T > &other) const
Returns true if this range overlaps another range.
Definition qgsrange.h:147
T lower() const
Returns the lower bound of the range.
Definition qgsrange.h:66
T upper() const
Returns the upper bound of the range.
Definition qgsrange.h:73
A rectangle specified with double values.
double xMinimum() const
Returns the x minimum value (left side of rectangle).
bool intersects(const QgsRectangle &rect) const
Returns true when rectangle intersects with other rectangle.
double yMinimum() const
Returns the y minimum value (bottom side of rectangle).
double width() const
Returns the width of the rectangle.
double xMaximum() const
Returns the x maximum value (right side of rectangle).
double yMaximum() const
Returns the y maximum value (top side of rectangle).
Contains information about the context of a rendering operation.
double convertToPainterUnits(double size, Qgis::RenderUnit unit, const QgsMapUnitScale &scale=QgsMapUnitScale(), Qgis::RenderSubcomponentProperty property=Qgis::RenderSubcomponentProperty::Generic) const
Converts a size from the specified units to painter units (pixels).
QPainter * painter()
Returns the destination QPainter for the render operation.
void setPainterFlagsUsingContext(QPainter *painter=nullptr) const
Sets relevant flags on a destination painter, using the flags and settings currently defined for the ...
QgsElevationMap * elevationMap() const
Returns the destination elevation map for the render operation.
const QgsRectangle & extent() const
When rendering a map layer, calling this method returns the "clipping" extent for the layer (in the l...
float devicePixelRatio() const
Returns the device pixel ratio.
QgsDoubleRange zRange() const
Returns the range of z-values which should be rendered.
QSize deviceOutputSize() const
Returns the device output size of the render.
bool renderingStopped() const
Returns true if the rendering operation has been stopped and any ongoing rendering should be canceled...
QgsCoordinateTransform coordinateTransform() const
Returns the current coordinate transform for the context.
void record(const QString &name, double time, const QString &group="startup", const QString &id=QString())
Manually adds a profile event with the given name and total time (in seconds).
Scoped object for saving and restoring a QPainter object's state.
Class for storage of 3D vectors similar to QVector3D, with the difference that it uses double precisi...
Definition qgsvector3d.h:32
double y() const
Returns Y coordinate.
Definition qgsvector3d.h:51
double z() const
Returns Z coordinate.
Definition qgsvector3d.h:53
double x() const
Returns X coordinate.
Definition qgsvector3d.h:49
#define QgsDebugMsgLevel(str, level)
Definition qgslogger.h:39
#define QgsDebugError(str)
Definition qgslogger.h:38
bool isEdgeTooLong(const QPointF &p1, const QPointF &p2, float length)
Helper data structure used when rendering points as triangulated surface.
std::vector< QRgb > colors
RGB color for each point.
std::vector< float > elevations
Z value for each point (only used when global map shading is enabled)
std::vector< double > points
X,Y for each point - kept in this structure so that we can use it without further conversions in Dela...