MYNT-EYE-S-SDK/src/public/types.cc

216 lines
4.8 KiB
C++
Raw Normal View History

2018-04-03 05:27:28 +03:00
#include "mynteye/types.h"
#include <glog/logging.h>
MYNTEYE_BEGIN_NAMESPACE
2018-04-04 10:52:10 +03:00
const char *to_string(const Model &value) {
#define CASE(X) \
case Model::X: \
return "Model::" #X;
switch (value) {
CASE(STANDARD)
default:
CHECK(is_valid(value));
return "Model::UNKNOWN";
}
#undef CASE
}
2018-04-03 05:27:28 +03:00
const char *to_string(const Stream &value) {
#define CASE(X) \
case Stream::X: \
return "Stream::" #X;
switch (value) {
CASE(LEFT)
CASE(RIGHT)
CASE(LEFT_RECTIFIED)
CASE(RIGHT_RECTIFIED)
CASE(DISPARITY)
CASE(DISPARITY_NORMALIZED)
CASE(DEPTH)
CASE(POINTS)
default:
CHECK(is_valid(value));
return "Stream::UNKNOWN";
}
#undef CASE
}
const char *to_string(const Capabilities &value) {
#define CASE(X) \
case Capabilities::X: \
return "Capabilities::" #X;
switch (value) {
CASE(STEREO)
CASE(COLOR)
CASE(DEPTH)
CASE(POINTS)
CASE(FISHEYE)
2018-04-03 08:53:32 +03:00
CASE(INFRARED)
CASE(INFRARED2)
2018-04-03 05:27:28 +03:00
CASE(IMU)
default:
CHECK(is_valid(value));
return "Capabilities::UNKNOWN";
}
#undef CASE
}
const char *to_string(const Info &value) {
#define CASE(X) \
case Info::X: \
return "Info::" #X;
switch (value) {
CASE(DEVICE_NAME)
CASE(SERIAL_NUMBER)
CASE(FIRMWARE_VERSION)
CASE(HARDWARE_VERSION)
CASE(SPEC_VERSION)
CASE(LENS_TYPE)
CASE(IMU_TYPE)
CASE(NOMINAL_BASELINE)
default:
CHECK(is_valid(value));
return "Info::UNKNOWN";
}
#undef CASE
}
const char *to_string(const Option &value) {
#define CASE(X) \
case Option::X: \
return "Option::" #X;
switch (value) {
CASE(GAIN)
CASE(BRIGHTNESS)
CASE(CONTRAST)
CASE(FRAME_RATE)
CASE(IMU_FREQUENCY)
CASE(EXPOSURE_MODE)
CASE(MAX_GAIN)
CASE(MAX_EXPOSURE_TIME)
CASE(DESIRED_BRIGHTNESS)
CASE(IR_CONTROL)
CASE(HDR_MODE)
CASE(ZERO_DRIFT_CALIBRATION)
CASE(ERASE_CHIP)
default:
CHECK(is_valid(value));
return "Option::UNKNOWN";
}
#undef CASE
}
2018-04-07 04:36:41 +03:00
const char *to_string(const Source &value) {
#define CASE(X) \
case Source::X: \
return "Source::" #X;
switch (value) {
CASE(VIDEO_STREAMING)
CASE(MOTION_TRACKING)
CASE(ALL)
default:
return "Source::UNKNOWN";
}
#undef CASE
}
2018-04-06 04:12:09 +03:00
const char *to_string(const Format &value) {
#define CASE(X) \
case Format::X: \
return "Format::" #X;
switch (value) {
2018-04-08 17:35:49 +03:00
CASE(GREY)
2018-04-06 04:12:09 +03:00
CASE(YUYV)
default:
return "Format::UNKNOWN";
}
#undef CASE
}
2018-04-08 07:23:33 +03:00
std::size_t bytes_per_pixel(const Format &value) {
switch (value) {
2018-04-08 17:35:49 +03:00
case Format::GREY:
return 1;
2018-04-08 07:23:33 +03:00
case Format::YUYV:
return 2;
default:
LOG(FATAL) << "Unknown format";
}
}
2018-04-08 17:35:49 +03:00
std::ostream &operator<<(std::ostream &os, const StreamRequest &request) {
return os << "width: " << request.width << ", height: " << request.height
<< ", format: " << request.format << ", fps: " << request.fps;
}
2018-04-19 12:23:02 +03:00
std::ostream &operator<<(std::ostream &os, const ImgIntrinsics &in) {
os << "width: " << in.width << ", height: " << in.height << ", fx: " << in.fx
<< ", fy: " << in.fy << ", cx: " << in.cx << ", cy: " << in.cy
<< ", model: " << static_cast<int>(in.model) << ", coeffs: [";
for (int i = 0; i <= 3; i++)
os << in.coeffs[i] << ", ";
return os << in.coeffs[4] << "]";
}
std::ostream &operator<<(std::ostream &os, const ImuSensorIntrinsics &in) {
os << "scale: [";
for (int i = 0; i <= 2; i++)
os << in.scale[0][i] << ", ";
for (int i = 0; i <= 2; i++)
os << in.scale[1][i] << ", ";
for (int i = 0; i <= 1; i++)
os << in.scale[2][i] << ", ";
os << in.scale[2][2] << "]";
os << ", drift: [";
for (int i = 0; i <= 1; i++)
os << in.drift[i] << ", ";
os << in.drift[2] << "]";
os << ", noise: [";
for (int i = 0; i <= 1; i++)
os << in.noise[i] << ", ";
os << in.noise[2] << "]";
os << ", bias: [";
for (int i = 0; i <= 1; i++)
os << in.bias[i] << ", ";
os << in.bias[2] << "]";
return os;
}
std::ostream &operator<<(std::ostream &os, const ImuIntrinsics &in) {
return os << "accel: {" << in.accel << "}, gyro: {" << in.gyro << "}";
}
std::ostream &operator<<(std::ostream &os, const Extrinsics &ex) {
os << "rotation: [";
for (int i = 0; i <= 2; i++)
os << ex.rotation[0][i] << ", ";
for (int i = 0; i <= 2; i++)
os << ex.rotation[1][i] << ", ";
for (int i = 0; i <= 1; i++)
os << ex.rotation[2][i] << ", ";
os << ex.rotation[2][2] << "]";
os << ", translation: [";
for (int i = 0; i <= 1; i++)
os << ex.translation[i] << ", ";
os << ex.translation[2] << "]";
return os;
}
std::ostream &operator<<(std::ostream &os, const ImgExtrinsics &ex) {
return os << "left_to_right: {" << ex.left_to_right << "}";
}
std::ostream &operator<<(std::ostream &os, const ImuExtrinsics &ex) {
return os << "left_to_imu: {" << ex.left_to_imu << "}";
}
2018-04-03 05:27:28 +03:00
MYNTEYE_END_NAMESPACE