public enum MavEstimatorType extends Enum<MavEstimatorType>
| 枚举常量和说明 |
|---|
MAV_ESTIMATOR_TYPE_GPS
Plain GPS estimate.
|
MAV_ESTIMATOR_TYPE_GPS_INS
Estimator integrating GPS and inertial sensing.
|
MAV_ESTIMATOR_TYPE_NAIVE
This is a naive estimator without any real covariance feedback.
|
MAV_ESTIMATOR_TYPE_VIO
Visual-inertial estimate.
|
MAV_ESTIMATOR_TYPE_VISION
Computer vision based estimate.
|
public static final MavEstimatorType MAV_ESTIMATOR_TYPE_NAIVE
public static final MavEstimatorType MAV_ESTIMATOR_TYPE_VISION
public static final MavEstimatorType MAV_ESTIMATOR_TYPE_VIO
public static final MavEstimatorType MAV_ESTIMATOR_TYPE_GPS
public static final MavEstimatorType MAV_ESTIMATOR_TYPE_GPS_INS
public static MavEstimatorType[] values()
for (MavEstimatorType c : MavEstimatorType.values()) System.out.println(c);
public static MavEstimatorType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2020. All rights reserved.