2018-05-10 09:46:34 +03: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 16:24:04 +03:00
|
|
|
#ifndef MYNTEYE_DEVICE_UTILS_H_
|
|
|
|
#define MYNTEYE_DEVICE_UTILS_H_
|
2018-04-20 07:44:23 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <memory>
|
2018-11-05 06:17:35 +02:00
|
|
|
#include <string>
|
2018-04-20 07:44:23 +03:00
|
|
|
|
|
|
|
#include "mynteye/mynteye.h"
|
2018-12-20 11:10:18 +02:00
|
|
|
#include "mynteye/types.h"
|
2018-04-20 07:44:23 +03:00
|
|
|
|
|
|
|
MYNTEYE_BEGIN_NAMESPACE
|
|
|
|
|
2018-05-16 05:31:31 +03:00
|
|
|
/**
|
|
|
|
* @defgroup utils Utiliities
|
|
|
|
*/
|
|
|
|
|
2018-04-20 07:44:23 +03:00
|
|
|
class Device;
|
|
|
|
|
|
|
|
namespace device {
|
|
|
|
|
2018-05-15 17:01:15 +03:00
|
|
|
/**
|
2018-05-16 05:31:31 +03:00
|
|
|
* @ingroup utils
|
|
|
|
*
|
2018-05-15 17:01:15 +03:00
|
|
|
* Detecting MYNT EYE devices and prompt user to select one.
|
2018-05-16 05:31:31 +03:00
|
|
|
*
|
2018-05-15 17:01:15 +03:00
|
|
|
* @return the selected device, or `nullptr` if none.
|
|
|
|
*/
|
2018-04-23 18:11:11 +03:00
|
|
|
MYNTEYE_API std::shared_ptr<Device> select();
|
2018-04-20 07:44:23 +03:00
|
|
|
|
2018-12-20 11:10:18 +02:00
|
|
|
/**
|
|
|
|
* @ingroup utils
|
|
|
|
*
|
|
|
|
* List stream requests and prompt user to select one.
|
|
|
|
*
|
|
|
|
* @return the selected request.
|
|
|
|
*/
|
|
|
|
MYNTEYE_API MYNTEYE_NAMESPACE::StreamRequest select_request(
|
|
|
|
const std::shared_ptr<Device> &device, bool *ok);
|
|
|
|
|
2018-04-20 07:44:23 +03:00
|
|
|
} // namespace device
|
|
|
|
|
2018-05-13 05:34:03 +03:00
|
|
|
namespace utils {
|
|
|
|
|
2018-05-15 17:01:15 +03:00
|
|
|
/**
|
2018-05-16 05:31:31 +03:00
|
|
|
* @ingroup utils
|
|
|
|
*
|
2018-05-15 17:01:15 +03:00
|
|
|
* Get real exposure time in ms from virtual value, according to its frame rate.
|
2018-05-16 05:31:31 +03:00
|
|
|
*
|
2018-05-15 17:01:15 +03:00
|
|
|
* @param frame_rate the frame rate of the device.
|
|
|
|
* @param exposure_time the virtual exposure time.
|
|
|
|
* @return the real exposure time in ms, or the virtual value if frame rate is
|
|
|
|
* invalid.
|
2018-05-13 05:34:03 +03:00
|
|
|
*/
|
|
|
|
MYNTEYE_API float get_real_exposure_time(
|
|
|
|
std::int32_t frame_rate, std::uint16_t exposure_time);
|
|
|
|
|
2018-11-05 06:17:35 +02:00
|
|
|
/**
|
|
|
|
* @ingroup utils
|
2018-12-20 11:10:18 +02:00
|
|
|
*
|
2018-11-05 06:17:35 +02:00
|
|
|
* Get sdk root dir.
|
|
|
|
*/
|
|
|
|
MYNTEYE_API std::string get_sdk_root_dir();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ingroup utils
|
2018-12-20 11:10:18 +02:00
|
|
|
*
|
2018-11-05 06:17:35 +02:00
|
|
|
* Get sdk install dir.
|
|
|
|
*/
|
|
|
|
MYNTEYE_API std::string get_sdk_install_dir();
|
|
|
|
|
2018-05-13 05:34:03 +03:00
|
|
|
} // namespace utils
|
|
|
|
|
2018-04-20 07:44:23 +03:00
|
|
|
MYNTEYE_END_NAMESPACE
|
|
|
|
|
2018-10-27 16:24:04 +03:00
|
|
|
#endif // MYNTEYE_DEVICE_UTILS_H_
|