LCEstimationThreshold
Objective-C
@interface LCEstimationThreshold : NSObject
Swift
class LCEstimationThreshold : NSObject
Configuration object of the best shot estimation.
-
Limits the head rotation along the X axis.
Declaration
Objective-C
@property (nonatomic) CGFloat headPitch;Swift
var headPitch: CGFloat { get set } -
Limits the head rotation along the Y axis.
Declaration
Objective-C
@property (nonatomic) CGFloat headYaw;Swift
var headYaw: CGFloat { get set } -
Limits the head rotation along the Z axis.
Declaration
Objective-C
@property (nonatomic) CGFloat headRoll;Swift
var headRoll: CGFloat { get set } -
Minimum value of shot’s quality estimation.
Declaration
Objective-C
@property (nonatomic) CGFloat ags;Swift
var ags: CGFloat { get set } -
Initialization.
Declaration
Objective-C
- (nonnull instancetype)initWithHeadPitch:(CGFloat)headPitch headYaw:(CGFloat)headYaw headRoll:(CGFloat)headRoll ags:(CGFloat)ags;Swift
init(headPitch: CGFloat, headYaw: CGFloat, headRoll: CGFloat, ags: CGFloat)Parameters
headPitchLimits the head rotation along the X axis.
headYawLimits the head rotation along the Y axis.
headRollLimits the head rotation along the Z axis.
agsMinimum value of shot’s quality estimation.
LCEstimationThreshold Class Reference