HeightMapSurfaceDataProxy QML Type

Base proxy type for Surface3D . 更多...

导入语句: import QtDataVisualization 1.2
Since: QtDataVisualization 1.0
实例化: QHeightMapSurfaceDataProxy
继承:

SurfaceDataProxy

特性

详细描述

HeightMapSurfaceDataProxy takes care of surface related height map data handling. It provides a way to give a height map to be visualized as a surface plot.

For more complete description, see QHeightMapSurfaceDataProxy .

另请参阅 Qt Data Visualization 数据处理 .

特性文档编制

heightMapFile : string

A file with a height map image to be visualized. Setting this property replaces current data with height map data.

There are several formats the image file can be given in, but if it is not in a directly usable format, a conversion is made.

注意: If the result seems wrong, the automatic conversion failed and you should try converting the image yourself before setting it. Preferred format is QImage::Format_RGB32 in grayscale.

The height of the image is read from the red component of the pixels if the image is in grayscale, otherwise it is an average calculated from red, green and blue components of the pixels. Using grayscale images may improve data conversion speed for large images.

Since height maps do not contain values for X or Z axes, those values need to be given separately using minXValue , maxXValue , minZValue ,和 maxZValue properties. X-value corresponds to image horizontal direction and Z-value to the vertical. Setting any of these properties triggers asynchronous re-resolving of any existing height map.

Not recommended formats: all mono formats (for example QImage::Format_Mono ).


maxXValue : real

The maximum X value for the generated surface points. Defaults to 10.0 . When setting this property the corresponding minimum value is adjusted if necessary, to ensure that the range remains valid.


maxZValue : real

The maximum Z value for the generated surface points. Defaults to 10.0 . When setting this property the corresponding minimum value is adjusted if necessary, to ensure that the range remains valid.


minXValue : real

The minimum X value for the generated surface points. Defaults to 0.0 . When setting this property the corresponding maximum value is adjusted if necessary, to ensure that the range remains valid.


minZValue : real

The minimum Z value for the generated surface points. Defaults to 0.0 . When setting this property the corresponding maximum value is adjusted if necessary, to ensure that the range remains valid.