DepthOfFieldHQBlur QML Type

A depth-based blur effect. 更多...

导入语句: import QtQuick3D.Effects 1.15

特性

详细描述

The DepthOfFieldHQBlur effect performs a gradient blur on regions of the image based on their deviation from a specified distance from the camera.

For this effect to work well, you need to adjust the clipFar and clipNear properties of the camera for the scene to frame the content. You ideally want the largest possible value for clipNear and the smallest possible value for clipFar . Next, adjust the properties of the effect for the desired result.

For example, a focusDistance of 100 focusRange of 20 means that everything that is between 90 and 110 units away from the camera will be entirely in focus, items at a distance of 70-90 and 110-130 units will experience variable blurring, and everything closer than 70 or farther than 130 will be entirely blurred.

另请参阅 TiltShift .

特性文档编制

blurAmount : real

The strength of blur when out of focus. Sensible values are in the range [1...10] . 4 在默认情况下。


focusDistance : real

The distance from the camera where the content is in perfect focus. 600 在默认情况下。


focusRange : real

The distance around the focusDistance where items are fully in focus. The focus then fades away to fully blurred by the same distance on both the near and far sides. 100 在默认情况下。