ARKit
更新时间:2021-06-17
此类封装ARKit相关操作
Public methods | |
---|---|
ARKit | start_plane_detect() 开始平面检测 |
ARKit | set_plane_detection_type 设置平面检测类型 |
ARKit | redetect_plane 重新检测平面 |
ARKit | set_plane_feature_info_enabled 是否开启平面特征点信息 |
start_plane_detect
API起始版本:190
void start_plane_detect ()
开始检测平面
sample:
ARKit.start_plane_detect()
set_plane_detection_type
API起始版本:190
void on_slam_direction_guide (DetectionType type)
设置检测平面的类型:(水平面,竖直平面,同时检测水平面和竖直平面)
Parameters
DetectionType |
- DetectionType.Horizontal : 检测水平面
- DetectionType.Vertical : 检测竖直平面
- DetectionType.VerticalAndHorizontal : 同时检测水平面和竖直平面
sample:
ARKit.set_plane_detection_type(DetectionType.VerticalAndHorizontal)
redetect_plane
API起始版本:190
void redetect_plane()
重新检测平面
sample:
ARKit.redetect_plane()
set_plane_feature_info_enabled
API起始版本:190
void set_plane_feature_info_enabled(BOOL enable)
是否开启平面特征点信息
Parameters
- enable | BOOL:是否开启平面特征点信息
sample:
ARKit.set_plane_feature_info_enabled(true)