2018-05-10 14:46:34 +08:00
|
|
|
// Copyright 2018 Slightech Co., Ltd. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
2018-10-27 21:24:04 +08:00
|
|
|
#include "mynteye/device/config.h"
|
2018-04-04 15:52:10 +08:00
|
|
|
|
|
|
|
MYNTEYE_BEGIN_NAMESPACE
|
|
|
|
|
|
|
|
const std::map<Model, StreamSupports> stream_supports_map = {
|
|
|
|
{Model::STANDARD, {Stream::LEFT, Stream::RIGHT}}};
|
|
|
|
|
|
|
|
const std::map<Model, CapabilitiesSupports> capabilities_supports_map = {
|
2018-08-05 23:18:51 +08:00
|
|
|
{Model::STANDARD, {Capabilities::STEREO_COLOR, Capabilities::IMU}}};
|
2018-04-04 15:52:10 +08:00
|
|
|
|
2018-09-30 13:57:21 +08:00
|
|
|
// TODO(Kalman): Compatible with two generation
|
2018-04-04 15:52:10 +08:00
|
|
|
const std::map<Model, OptionSupports> option_supports_map = {
|
2018-08-16 19:34:01 +08:00
|
|
|
{Model::STANDARD,
|
2018-09-29 16:36:14 +08:00
|
|
|
{Option::BRIGHTNESS, Option::EXPOSURE_MODE, Option::MAX_GAIN,
|
|
|
|
Option::MAX_EXPOSURE_TIME, Option::DESIRED_BRIGHTNESS,
|
|
|
|
Option::MIN_EXPOSURE_TIME, Option::ERASE_CHIP,
|
|
|
|
Option::ACCELEROMETER_RANGE, Option::GYROSCOPE_RANGE,
|
|
|
|
Option::ACCELEROMETER_LOW_PASS_FILTER,
|
2018-08-16 19:34:01 +08:00
|
|
|
Option::GYROSCOPE_LOW_PASS_FILTER}}};
|
2018-04-04 15:52:10 +08:00
|
|
|
|
2018-04-08 12:23:33 +08:00
|
|
|
const std::map<Model, std::map<Capabilities, StreamRequests>>
|
|
|
|
stream_requests_map = {
|
|
|
|
{Model::STANDARD,
|
2018-08-05 23:18:51 +08:00
|
|
|
{{Capabilities::STEREO, {{480, 752, Format::YUYV, 25}}},
|
|
|
|
{Capabilities::STEREO_COLOR,
|
2018-08-07 02:29:07 +08:00
|
|
|
{// {1280, 400, Format::YUYV, 10},
|
|
|
|
// {1280, 400, Format::YUYV, 20},
|
|
|
|
// {1280, 400, Format::YUYV, 30},
|
|
|
|
// {1280, 400, Format::YUYV, 60},
|
|
|
|
// {2560, 800, Format::YUYV, 10},
|
|
|
|
// {2560, 800, Format::YUYV, 20},
|
|
|
|
// {2560, 800, Format::YUYV, 30},
|
|
|
|
{1280, 400, Format::BGR888, 10},
|
|
|
|
{1280, 400, Format::BGR888, 20},
|
|
|
|
{1280, 400, Format::BGR888, 30},
|
|
|
|
{1280, 400, Format::BGR888, 60},
|
|
|
|
{2560, 800, Format::BGR888, 10},
|
|
|
|
{2560, 800, Format::BGR888, 20},
|
|
|
|
{2560, 800, Format::BGR888, 30}}}}}};
|
2018-04-06 09:28:17 +08:00
|
|
|
|
2018-04-04 15:52:10 +08:00
|
|
|
MYNTEYE_END_NAMESPACE
|