2018-04-19 18:19:00 +03:00
|
|
|
#ifndef MYNTEYE_CALLBACKS_H_ // NOLINT
|
|
|
|
#define MYNTEYE_CALLBACKS_H_
|
2018-04-06 04:12:09 +03:00
|
|
|
#pragma once
|
|
|
|
|
2018-04-08 07:23:33 +03:00
|
|
|
#include <cstdint>
|
2018-04-08 17:35:49 +03:00
|
|
|
|
|
|
|
#include <algorithm>
|
2018-04-06 04:12:09 +03:00
|
|
|
#include <functional>
|
2018-04-08 07:23:33 +03:00
|
|
|
#include <memory>
|
|
|
|
#include <vector>
|
2018-04-06 04:12:09 +03:00
|
|
|
|
|
|
|
#include "mynteye/mynteye.h"
|
|
|
|
#include "mynteye/types.h"
|
|
|
|
|
|
|
|
MYNTEYE_BEGIN_NAMESPACE
|
|
|
|
|
|
|
|
namespace device {
|
|
|
|
|
2018-04-23 18:11:11 +03:00
|
|
|
class MYNTEYE_API Frame {
|
2018-04-08 07:23:33 +03:00
|
|
|
public:
|
|
|
|
using data_t = std::vector<std::uint8_t>;
|
|
|
|
|
|
|
|
Frame(const StreamRequest &request, const void *data)
|
|
|
|
: Frame(request.width, request.height, request.format, data) {}
|
|
|
|
|
|
|
|
Frame(
|
|
|
|
std::uint16_t width, std::uint16_t height, Format format,
|
|
|
|
const void *data)
|
|
|
|
: width_(width), height_(height), format_(format) {
|
2018-04-08 17:35:49 +03:00
|
|
|
std::size_t bytes_n = (width * height) * bytes_per_pixel(format);
|
|
|
|
if (data) {
|
|
|
|
const std::uint8_t *bytes = static_cast<const std::uint8_t *>(data);
|
|
|
|
data_ = data_t(bytes, bytes + bytes_n);
|
|
|
|
} else {
|
|
|
|
data_.assign(bytes_n, 0);
|
|
|
|
}
|
2018-04-08 07:23:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
std::uint16_t width() const {
|
|
|
|
return width_;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::uint16_t height() const {
|
|
|
|
return height_;
|
|
|
|
}
|
|
|
|
|
|
|
|
Format format() const {
|
|
|
|
return format_;
|
|
|
|
}
|
|
|
|
|
2018-04-08 17:35:49 +03:00
|
|
|
std::uint8_t *data() {
|
|
|
|
return data_.data();
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::uint8_t *data() const {
|
|
|
|
return data_.data();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::size_t size() const {
|
|
|
|
return data_.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
Frame clone() const {
|
|
|
|
Frame frame(width_, height_, format_, nullptr);
|
|
|
|
std::copy(data_.begin(), data_.end(), frame.data_.begin());
|
|
|
|
return frame;
|
2018-04-08 07:23:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::uint16_t width_;
|
|
|
|
std::uint16_t height_;
|
|
|
|
Format format_;
|
|
|
|
|
|
|
|
data_t data_;
|
|
|
|
};
|
|
|
|
|
2018-04-06 04:12:09 +03:00
|
|
|
struct MYNTEYE_API StreamData {
|
2018-04-08 17:35:49 +03:00
|
|
|
std::shared_ptr<ImgData> img;
|
2018-04-08 07:23:33 +03:00
|
|
|
std::shared_ptr<Frame> frame;
|
2018-04-06 04:12:09 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct MYNTEYE_API MotionData {
|
2018-04-08 17:35:49 +03:00
|
|
|
std::shared_ptr<ImuData> imu;
|
2018-04-06 04:12:09 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
using StreamCallback = std::function<void(const StreamData &data)>;
|
|
|
|
using MotionCallback = std::function<void(const MotionData &data)>;
|
|
|
|
|
|
|
|
} // namespace device
|
|
|
|
|
|
|
|
MYNTEYE_END_NAMESPACE
|
|
|
|
|
2018-04-19 18:19:00 +03:00
|
|
|
#endif // MYNTEYE_CALLBACKS_H_ NOLINT
|