m300携带的H20T的镜头,在红外模式下怎么设置分屏呢
已完成
DroneModelFactory.getProductInstance().getCamera().setCameraVideoStreamSource(CameraVideoStreamSource.INFRARED_THERMAL, new CommonCallbacks.CompletionCallback() {
@Override
public void onResult(DJIError djiError) {
if (djiError != null)
Log.i("qqqqq错误3", djiError.getDescription());
}
});
//
//
DroneModelFactory.getProductInstance().getCamera().getLens(1).setDisplayMode(SettingsDefinitions.DisplayMode.THERMAL_ONLY, new CommonCallbacks.CompletionCallback() {
@Override
public void onResult(DJIError djiError) {
if (djiError != null)
Log.i("qqqqq2222错误", djiError.getDescription());
}
});
我先将H20T的镜头设置为红外模式,然后设置DisplayMode为可见光,但是没有什么效果,报The feature is unsupported这个错误,请问我要怎么调整呢
请先登录再写评论。
评论
1 条评论