128 lines
3.8 KiB
C++
128 lines
3.8 KiB
C++
// 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.
|
|
#include "internal/motions.h"
|
|
|
|
#include <glog/logging.h>
|
|
|
|
#include "internal/channels.h"
|
|
|
|
MYNTEYE_BEGIN_NAMESPACE
|
|
|
|
Motions::Motions(std::shared_ptr<Channels> channels)
|
|
: channels_(channels),
|
|
motion_callback_(nullptr),
|
|
motion_datas_enabled_(false),
|
|
is_imu_tracking(false) {
|
|
CHECK_NOTNULL(channels_);
|
|
VLOG(2) << __func__;
|
|
}
|
|
|
|
Motions::~Motions() {
|
|
VLOG(2) << __func__;
|
|
}
|
|
|
|
void Motions::SetMotionCallback(motion_callback_t callback) {
|
|
motion_callback_ = callback;
|
|
if (motion_callback_) {
|
|
accel_range = channels_->GetControlValue(Option::ACCELEROMETER_RANGE);
|
|
gyro_range = channels_->GetControlValue(Option::GYROSCOPE_RANGE);
|
|
channels_->SetImuCallback([this](const ImuPacket &packet) {
|
|
if (!motion_callback_ && !motion_datas_enabled_) {
|
|
LOG(WARNING) << "";
|
|
return;
|
|
}
|
|
for (auto &&seg : packet.segments) {
|
|
auto &&imu = std::make_shared<ImuData>();
|
|
// imu->frame_id = seg.frame_id;
|
|
// if (seg.offset < 0 &&
|
|
// static_cast<uint32_t>(-seg.offset) > packet.timestamp) {
|
|
// LOG(WARNING) << "Imu timestamp offset is incorrect";
|
|
// }
|
|
imu->serial_number = seg.serial_number;
|
|
imu->timestamp = seg.timestamp;
|
|
imu->flag = seg.flag;
|
|
imu->temperature = seg.temperature / 326.8f + 25;
|
|
|
|
if (imu->flag == 1) {
|
|
imu->accel[0] = seg.aceel_or_gyro[0] * 1.f * accel_range / 0x10000;
|
|
imu->accel[1] = seg.aceel_or_gyro[1] * 1.f * accel_range / 0x10000;
|
|
imu->accel[2] = seg.aceel_or_gyro[2] * 1.f * accel_range / 0x10000;
|
|
imu->gyro[0] = 0;
|
|
imu->gyro[1] = 0;
|
|
imu->gyro[2] = 0;
|
|
} else if (imu->flag == 2) {
|
|
imu->accel[0] = 0;
|
|
imu->accel[1] = 0;
|
|
imu->accel[2] = 0;
|
|
imu->gyro[0] = seg.aceel_or_gyro[0] * 1.f * gyro_range / 0x10000;
|
|
imu->gyro[1] = seg.aceel_or_gyro[1] * 1.f * gyro_range / 0x10000;
|
|
imu->gyro[2] = seg.aceel_or_gyro[2] * 1.f * gyro_range / 0x10000;
|
|
} else {
|
|
imu->Reset();
|
|
}
|
|
|
|
std::lock_guard<std::mutex> _(mtx_datas_);
|
|
motion_data_t data = {imu};
|
|
motion_datas_.push_back(data);
|
|
|
|
motion_callback_(data);
|
|
}
|
|
});
|
|
} else {
|
|
channels_->SetImuCallback(nullptr);
|
|
}
|
|
}
|
|
|
|
void Motions::DoMotionTrack() {
|
|
channels_->DoImuTrack();
|
|
}
|
|
|
|
void Motions::StartMotionTracking() {
|
|
if (!is_imu_tracking) {
|
|
channels_->StartImuTracking();
|
|
is_imu_tracking = true;
|
|
} else {
|
|
LOG(WARNING) << "Imu is tracking already";
|
|
}
|
|
}
|
|
|
|
void Motions::StopMotionTracking() {
|
|
if (is_imu_tracking) {
|
|
channels_->StopImuTracking();
|
|
is_imu_tracking = false;
|
|
}
|
|
}
|
|
|
|
void Motions::EnableMotionDatas(std::size_t max_size) {
|
|
if (max_size <= 0) {
|
|
LOG(WARNING) << "Could not enable motion datas with max_size <= 0";
|
|
return;
|
|
}
|
|
motion_datas_enabled_ = true;
|
|
motion_datas_max_size = max_size;
|
|
}
|
|
|
|
Motions::motion_datas_t Motions::GetMotionDatas() {
|
|
if (!motion_datas_enabled_) {
|
|
LOG(FATAL) << "Must enable motion datas before getting them, or you set "
|
|
"motion callback instead";
|
|
}
|
|
std::lock_guard<std::mutex> _(mtx_datas_);
|
|
motion_datas_t datas = motion_datas_;
|
|
motion_datas_.clear();
|
|
return datas;
|
|
}
|
|
|
|
MYNTEYE_END_NAMESPACE
|