Change log header

This commit is contained in:
John Zhao 2018-09-04 15:12:04 +08:00
parent 30a9397602
commit 4d5ff16f82
60 changed files with 71 additions and 101 deletions

View File

@ -100,7 +100,7 @@ endif()
set(MYNTEYE_PUBLIC_H set(MYNTEYE_PUBLIC_H
${CMAKE_CURRENT_SOURCE_DIR}/include/mynteye/callbacks.h ${CMAKE_CURRENT_SOURCE_DIR}/include/mynteye/callbacks.h
${CMAKE_CURRENT_SOURCE_DIR}/include/mynteye/global.h ${CMAKE_CURRENT_SOURCE_DIR}/include/mynteye/global.h
${CMAKE_CURRENT_SOURCE_DIR}/include/mynteye/glog_init.h ${CMAKE_CURRENT_SOURCE_DIR}/include/mynteye/logger.h
${CMAKE_CURRENT_BINARY_DIR}/include/mynteye/mynteye.h ${CMAKE_CURRENT_BINARY_DIR}/include/mynteye/mynteye.h
${CMAKE_CURRENT_SOURCE_DIR}/include/mynteye/types.h ${CMAKE_CURRENT_SOURCE_DIR}/include/mynteye/types.h
${CMAKE_CURRENT_SOURCE_DIR}/include/mynteye/utils.h ${CMAKE_CURRENT_SOURCE_DIR}/include/mynteye/utils.h

View File

@ -1,6 +1,6 @@
# 日志 {#guide_log} # 日志 {#guide_log}
日志系统用的 `glog` ,通用配置在头文件 `glog_init.h` 里。 日志系统用的 `glog` ,通用配置在头文件 `logger.h` 里。
* 日志文件会存储在当前工作目录, `make cleanlog` 可以清理。 * 日志文件会存储在当前工作目录, `make cleanlog` 可以清理。
* 如果需要打开详细日志,请取消 `glog_init.h` 里注释的 `FLAGS_v = 2;` ,重新编译。 * 如果需要打开详细日志,请取消 `logger.h` 里注释的 `FLAGS_v = 2;` ,重新编译。

View File

@ -11,8 +11,8 @@
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
#ifndef MYNTEYE_GLOG_INIT_H_ // NOLINT #ifndef MYNTEYE_LOGGER_H_
#define MYNTEYE_GLOG_INIT_H_ #define MYNTEYE_LOGGER_H_
#pragma once #pragma once
#include <glog/logging.h> #include <glog/logging.h>
@ -62,4 +62,4 @@ struct glog_init {
} }
}; };
#endif // MYNTEYE_GLOG_INIT_H_ NOLINT #endif // MYNTEYE_LOGGER_H_

View File

@ -13,7 +13,7 @@
// limitations under the License. // limitations under the License.
#include <opencv2/highgui/highgui.hpp> #include <opencv2/highgui/highgui.hpp>
#include <glog/logging.h> #include "mynteye/logger.h"
#include "mynteye/api.h" #include "mynteye/api.h"
#include "mynteye/times.h" #include "mynteye/times.h"

View File

@ -14,8 +14,6 @@
#include <opencv2/highgui/highgui.hpp> #include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp> #include <opencv2/imgproc/imgproc.hpp>
#include <glog/logging.h>
#include "mynteye/api.h" #include "mynteye/api.h"
namespace { namespace {

View File

@ -14,7 +14,7 @@
#include <opencv2/highgui/highgui.hpp> #include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp> #include <opencv2/imgproc/imgproc.hpp>
#include "mynteye/glog_init.h" #include "mynteye/logger.h"
#include "mynteye/device.h" #include "mynteye/device.h"
#include "mynteye/utils.h" #include "mynteye/utils.h"

View File

@ -13,9 +13,8 @@
// limitations under the License. // limitations under the License.
#include <opencv2/highgui/highgui.hpp> #include <opencv2/highgui/highgui.hpp>
#include <glog/logging.h>
#include "mynteye/api.h" #include "mynteye/api.h"
#include "mynteye/logger.h"
#include "util/cv_painter.h" #include "util/cv_painter.h"

View File

@ -13,11 +13,10 @@
// limitations under the License. // limitations under the License.
#include <opencv2/highgui/highgui.hpp> #include <opencv2/highgui/highgui.hpp>
#include <glog/logging.h>
#include <atomic> #include <atomic>
#include "mynteye/api.h" #include "mynteye/api.h"
#include "mynteye/logger.h"
#include "mynteye/times.h" #include "mynteye/times.h"
MYNTEYE_USE_NAMESPACE MYNTEYE_USE_NAMESPACE

View File

@ -13,9 +13,8 @@
// limitations under the License. // limitations under the License.
#include <opencv2/highgui/highgui.hpp> #include <opencv2/highgui/highgui.hpp>
#include <glog/logging.h>
#include "mynteye/api.h" #include "mynteye/api.h"
#include "mynteye/logger.h"
MYNTEYE_USE_NAMESPACE MYNTEYE_USE_NAMESPACE

View File

@ -13,9 +13,8 @@
// limitations under the License. // limitations under the License.
#include <opencv2/highgui/highgui.hpp> #include <opencv2/highgui/highgui.hpp>
#include <glog/logging.h>
#include "mynteye/api.h" #include "mynteye/api.h"
#include "mynteye/logger.h"
#include "util/cv_painter.h" #include "util/cv_painter.h"

View File

@ -13,8 +13,6 @@
// limitations under the License. // limitations under the License.
#include <opencv2/highgui/highgui.hpp> #include <opencv2/highgui/highgui.hpp>
#include <glog/logging.h>
#include "mynteye/api.h" #include "mynteye/api.h"
MYNTEYE_USE_NAMESPACE MYNTEYE_USE_NAMESPACE

View File

@ -11,9 +11,8 @@
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
#include <glog/logging.h>
#include "mynteye/api.h" #include "mynteye/api.h"
#include "mynteye/logger.h"
MYNTEYE_USE_NAMESPACE MYNTEYE_USE_NAMESPACE

View File

@ -13,8 +13,6 @@
// limitations under the License. // limitations under the License.
#include <opencv2/highgui/highgui.hpp> #include <opencv2/highgui/highgui.hpp>
#include <glog/logging.h>
#include "mynteye/api.h" #include "mynteye/api.h"
MYNTEYE_USE_NAMESPACE MYNTEYE_USE_NAMESPACE

View File

@ -13,14 +13,13 @@
// limitations under the License. // limitations under the License.
#include <opencv2/highgui/highgui.hpp> #include <opencv2/highgui/highgui.hpp>
#include <glog/logging.h>
#include <atomic> #include <atomic>
#include <memory> #include <memory>
#include <mutex> #include <mutex>
#include <sstream> #include <sstream>
#include "mynteye/api.h" #include "mynteye/api.h"
#include "mynteye/logger.h"
#include "util/cv_painter.h" #include "util/cv_painter.h"

View File

@ -11,9 +11,8 @@
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
#include <glog/logging.h>
#include "mynteye/api.h" #include "mynteye/api.h"
#include "mynteye/logger.h"
MYNTEYE_USE_NAMESPACE MYNTEYE_USE_NAMESPACE

View File

@ -13,9 +13,8 @@
// limitations under the License. // limitations under the License.
#include <opencv2/highgui/highgui.hpp> #include <opencv2/highgui/highgui.hpp>
#include <glog/logging.h>
#include "mynteye/api.h" #include "mynteye/api.h"
#include "mynteye/logger.h"
#include "util/cv_painter.h" #include "util/cv_painter.h"

View File

@ -11,9 +11,8 @@
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
#include <glog/logging.h>
#include "mynteye/api.h" #include "mynteye/api.h"
#include "mynteye/logger.h"
MYNTEYE_USE_NAMESPACE MYNTEYE_USE_NAMESPACE

View File

@ -13,8 +13,6 @@
// limitations under the License. // limitations under the License.
#include <opencv2/highgui/highgui.hpp> #include <opencv2/highgui/highgui.hpp>
#include <glog/logging.h>
#include "mynteye/api.h" #include "mynteye/api.h"
#include "util/pc_viewer.h" #include "util/pc_viewer.h"

View File

@ -13,8 +13,6 @@
// limitations under the License. // limitations under the License.
#include <opencv2/highgui/highgui.hpp> #include <opencv2/highgui/highgui.hpp>
#include <glog/logging.h>
#include "mynteye/api.h" #include "mynteye/api.h"
MYNTEYE_USE_NAMESPACE MYNTEYE_USE_NAMESPACE

View File

@ -13,8 +13,6 @@
// limitations under the License. // limitations under the License.
#include <opencv2/highgui/highgui.hpp> #include <opencv2/highgui/highgui.hpp>
#include <glog/logging.h>
#include "mynteye/api.h" #include "mynteye/api.h"
MYNTEYE_USE_NAMESPACE MYNTEYE_USE_NAMESPACE

View File

@ -13,8 +13,6 @@
// limitations under the License. // limitations under the License.
#include <opencv2/highgui/highgui.hpp> #include <opencv2/highgui/highgui.hpp>
#include <glog/logging.h>
#include "mynteye/api.h" #include "mynteye/api.h"
MYNTEYE_USE_NAMESPACE MYNTEYE_USE_NAMESPACE

View File

@ -13,7 +13,7 @@
// limitations under the License. // limitations under the License.
#include "mynteye/context.h" #include "mynteye/context.h"
#include "mynteye/device.h" #include "mynteye/device.h"
#include "mynteye/glog_init.h" #include "mynteye/logger.h"
MYNTEYE_USE_NAMESPACE MYNTEYE_USE_NAMESPACE

View File

@ -14,8 +14,6 @@
#include <opencv2/highgui/highgui.hpp> #include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp> #include <opencv2/imgproc/imgproc.hpp>
#include <glog/logging.h>
#include "mynteye/api.h" #include "mynteye/api.h"
#include "util/cv_painter.h" #include "util/cv_painter.h"

View File

@ -13,8 +13,6 @@
// limitations under the License. // limitations under the License.
#include "util/cv_painter.h" #include "util/cv_painter.h"
#include <glog/logging.h>
#include <opencv2/imgproc/imgproc.hpp> #include <opencv2/imgproc/imgproc.hpp>
#include <iomanip> #include <iomanip>
@ -22,6 +20,7 @@
#include <memory> #include <memory>
#include <utility> #include <utility>
#include "mynteye/logger.h"
#include "mynteye/utils.h" #include "mynteye/utils.h"
#define FONT_FACE cv::FONT_HERSHEY_PLAIN #define FONT_FACE cv::FONT_HERSHEY_PLAIN

View File

@ -13,12 +13,12 @@
// limitations under the License. // limitations under the License.
#include "util/pc_viewer.h" #include "util/pc_viewer.h"
#include <glog/logging.h>
// #include <pcl/common/common_headers.h> // #include <pcl/common/common_headers.h>
#include <cmath> #include <cmath>
#include "mynteye/logger.h"
std::shared_ptr<pcl::visualization::PCLVisualizer> CustomColorVis( std::shared_ptr<pcl::visualization::PCLVisualizer> CustomColorVis(
pcl::PointCloud<pcl::PointXYZ>::ConstPtr pc) { pcl::PointCloud<pcl::PointXYZ>::ConstPtr pc) {
// -------------------------------------------- // --------------------------------------------

View File

@ -20,7 +20,7 @@
#include <iostream> #include <iostream>
#include <mutex> #include <mutex>
#include "mynteye/glog_init.h" #include "mynteye/logger.h"
#include "mynteye/mynteye.h" #include "mynteye/mynteye.h"
#include "mynteye/types.h" #include "mynteye/types.h"
#include "uvc/uvc.h" #include "uvc/uvc.h"

View File

@ -18,12 +18,10 @@
#include <boost/range/iterator_range.hpp> #include <boost/range/iterator_range.hpp>
#endif #endif
#include <glog/logging.h>
#include <algorithm> #include <algorithm>
#include <thread> #include <thread>
#include "mynteye/glog_init.h" #include "mynteye/logger.h"
#include "mynteye/utils.h" #include "mynteye/utils.h"
#include "api/plugin.h" #include "api/plugin.h"

View File

@ -13,7 +13,7 @@
// limitations under the License. // limitations under the License.
#include "api/processor/depth_processor.h" #include "api/processor/depth_processor.h"
#include <glog/logging.h> #include "mynteye/logger.h"
#include <utility> #include <utility>

View File

@ -15,10 +15,10 @@
#include <opencv2/imgproc/imgproc.hpp> #include <opencv2/imgproc/imgproc.hpp>
#include <glog/logging.h>
#include <utility> #include <utility>
#include "mynteye/logger.h"
MYNTEYE_BEGIN_NAMESPACE MYNTEYE_BEGIN_NAMESPACE
const char DisparityNormalizedProcessor::NAME[] = const char DisparityNormalizedProcessor::NAME[] =

View File

@ -15,10 +15,10 @@
#include <opencv2/calib3d/calib3d.hpp> #include <opencv2/calib3d/calib3d.hpp>
#include <glog/logging.h>
#include <utility> #include <utility>
#include "mynteye/logger.h"
MYNTEYE_BEGIN_NAMESPACE MYNTEYE_BEGIN_NAMESPACE
const char DisparityProcessor::NAME[] = "DisparityProcessor"; const char DisparityProcessor::NAME[] = "DisparityProcessor";

View File

@ -15,10 +15,10 @@
#include <opencv2/calib3d/calib3d.hpp> #include <opencv2/calib3d/calib3d.hpp>
#include <glog/logging.h>
#include <utility> #include <utility>
#include "mynteye/logger.h"
MYNTEYE_BEGIN_NAMESPACE MYNTEYE_BEGIN_NAMESPACE
const char PointsProcessor::NAME[] = "PointsProcessor"; const char PointsProcessor::NAME[] = "PointsProcessor";

View File

@ -13,11 +13,11 @@
// limitations under the License. // limitations under the License.
#include "api/processor/processor.h" #include "api/processor/processor.h"
#include <glog/logging.h>
#include <exception> #include <exception>
#include <utility> #include <utility>
#include "mynteye/logger.h"
#include "internal/strings.h" #include "internal/strings.h"
#include "internal/times.h" #include "internal/times.h"

View File

@ -16,10 +16,10 @@
#include <opencv2/calib3d/calib3d.hpp> #include <opencv2/calib3d/calib3d.hpp>
#include <opencv2/imgproc/imgproc.hpp> #include <opencv2/imgproc/imgproc.hpp>
#include <glog/logging.h>
#include <utility> #include <utility>
#include "mynteye/logger.h"
#include "device/device.h" #include "device/device.h"
MYNTEYE_BEGIN_NAMESPACE MYNTEYE_BEGIN_NAMESPACE

View File

@ -13,12 +13,12 @@
// limitations under the License. // limitations under the License.
#include "api/synthetic.h" #include "api/synthetic.h"
#include <glog/logging.h>
#include <algorithm> #include <algorithm>
#include <functional> #include <functional>
#include <stdexcept> #include <stdexcept>
#include "mynteye/logger.h"
#include "api/plugin.h" #include "api/plugin.h"
#include "api/processor/depth_processor.h" #include "api/processor/depth_processor.h"
#include "api/processor/disparity_normalized_processor.h" #include "api/processor/disparity_normalized_processor.h"

View File

@ -13,7 +13,7 @@
// limitations under the License. // limitations under the License.
#include "device/context.h" #include "device/context.h"
#include <glog/logging.h> #include "mynteye/logger.h"
#include "device/device.h" #include "device/device.h"
#include "uvc/uvc.h" #include "uvc/uvc.h"

View File

@ -13,13 +13,13 @@
// limitations under the License. // limitations under the License.
#include "device/device.h" #include "device/device.h"
#include <glog/logging.h>
#include <algorithm> #include <algorithm>
#include <iterator> #include <iterator>
#include <stdexcept> #include <stdexcept>
#include <utility> #include <utility>
#include "mynteye/logger.h"
#include "device/device_s.h" #include "device/device_s.h"
#include "internal/async_callback.h" #include "internal/async_callback.h"
#include "internal/channels.h" #include "internal/channels.h"

View File

@ -13,7 +13,7 @@
// limitations under the License. // limitations under the License.
#include "device/device_s.h" #include "device/device_s.h"
#include <glog/logging.h> #include "mynteye/logger.h"
#include "internal/motions.h" #include "internal/motions.h"

View File

@ -15,11 +15,11 @@
#define MYNTEYE_INTERNAL_ASYNC_CALLBACK_IMPL_H_ #define MYNTEYE_INTERNAL_ASYNC_CALLBACK_IMPL_H_
#pragma once #pragma once
#include <glog/logging.h>
#include <string> #include <string>
#include <utility> #include <utility>
#include "mynteye/logger.h"
MYNTEYE_BEGIN_NAMESPACE MYNTEYE_BEGIN_NAMESPACE
template <class Data> template <class Data>

View File

@ -13,8 +13,6 @@
// limitations under the License. // limitations under the License.
#include "internal/channels.h" #include "internal/channels.h"
#include <glog/logging.h>
#include <bitset> #include <bitset>
#include <chrono> #include <chrono>
#include <iomanip> #include <iomanip>
@ -22,6 +20,8 @@
#include <sstream> #include <sstream>
#include <stdexcept> #include <stdexcept>
#include "mynteye/logger.h"
#include "internal/strings.h" #include "internal/strings.h"
#include "internal/times.h" #include "internal/times.h"

View File

@ -13,7 +13,7 @@
// limitations under the License. // limitations under the License.
#include "internal/dl.h" #include "internal/dl.h"
#include <glog/logging.h> #include "mynteye/logger.h"
MYNTEYE_BEGIN_NAMESPACE MYNTEYE_BEGIN_NAMESPACE

View File

@ -13,7 +13,7 @@
// limitations under the License. // limitations under the License.
#include "internal/files.h" #include "internal/files.h"
#include <glog/logging.h> #include "mynteye/logger.h"
#if defined(OS_WIN) && !defined(OS_MINGW) && !defined(OS_CYGWIN) #if defined(OS_WIN) && !defined(OS_MINGW) && !defined(OS_CYGWIN)
#include <direct.h> #include <direct.h>

View File

@ -13,7 +13,7 @@
// limitations under the License. // limitations under the License.
#include "internal/motions.h" #include "internal/motions.h"
#include <glog/logging.h> #include "mynteye/logger.h"
#include "internal/channels.h" #include "internal/channels.h"

View File

@ -13,13 +13,13 @@
// limitations under the License. // limitations under the License.
#include "internal/streams.h" #include "internal/streams.h"
#include <glog/logging.h>
#include <algorithm> #include <algorithm>
#include <chrono> #include <chrono>
#include <iomanip> #include <iomanip>
#include <stdexcept> #include <stdexcept>
#include "mynteye/logger.h"
#include "internal/types.h" #include "internal/types.h"
MYNTEYE_BEGIN_NAMESPACE MYNTEYE_BEGIN_NAMESPACE

View File

@ -13,12 +13,12 @@
// limitations under the License. // limitations under the License.
#include "internal/types.h" #include "internal/types.h"
#include <glog/logging.h>
#include <algorithm> #include <algorithm>
#include <iomanip> #include <iomanip>
#include <iostream> #include <iostream>
#include "mynteye/logger.h"
MYNTEYE_BEGIN_NAMESPACE MYNTEYE_BEGIN_NAMESPACE
std::string Version::to_string() const { std::string Version::to_string() const {

View File

@ -13,11 +13,11 @@
// limitations under the License. // limitations under the License.
#include "mynteye/types.h" #include "mynteye/types.h"
#include <glog/logging.h>
#include <iomanip> #include <iomanip>
#include <limits> #include <limits>
#include "mynteye/logger.h"
#define FULL_PRECISION \ #define FULL_PRECISION \
std::fixed << std::setprecision(std::numeric_limits<double>::max_digits10) std::fixed << std::setprecision(std::numeric_limits<double>::max_digits10)

View File

@ -13,7 +13,7 @@
// limitations under the License. // limitations under the License.
#include "mynteye/utils.h" #include "mynteye/utils.h"
#include <glog/logging.h> #include "mynteye/logger.h"
#include "device/context.h" #include "device/context.h"
#include "device/device.h" #include "device/device.h"

View File

@ -13,9 +13,10 @@
// limitations under the License. // limitations under the License.
#include "uvc/uvc.h" // NOLINT #include "uvc/uvc.h" // NOLINT
#include <glog/logging.h>
#include <libuvc/libuvc.h> #include <libuvc/libuvc.h>
#include "mynteye/logger.h"
// #define ENABLE_DEBUG_SPAM // #define ENABLE_DEBUG_SPAM
MYNTEYE_BEGIN_NAMESPACE MYNTEYE_BEGIN_NAMESPACE

View File

@ -25,13 +25,13 @@
#include <linux/uvcvideo.h> #include <linux/uvcvideo.h>
#include <linux/videodev2.h> #include <linux/videodev2.h>
#include <glog/logging.h>
#include <chrono> #include <chrono>
#include <fstream> #include <fstream>
#include <string> #include <string>
#include <thread> #include <thread>
#include "mynteye/logger.h"
MYNTEYE_BEGIN_NAMESPACE MYNTEYE_BEGIN_NAMESPACE
namespace uvc { namespace uvc {

View File

@ -53,7 +53,7 @@
#include <strsafe.h> #include <strsafe.h>
#include <glog/logging.h> #include "mynteye/logger.h"
#define VLOG_INFO VLOG(2) #define VLOG_INFO VLOG(2)
// #define VLOG_INFO LOG(INFO) // #define VLOG_INFO LOG(INFO)

View File

@ -15,7 +15,7 @@
#include "gtest/gtest.h" #include "gtest/gtest.h"
#include "mynteye/glog_init.h" #include "mynteye/logger.h"
int main(int argc, char **argv) { int main(int argc, char **argv) {
glog_init _(argc, argv); glog_init _(argc, argv);

View File

@ -19,14 +19,13 @@
#include <opencv2/imgcodecs/imgcodecs.hpp> #include <opencv2/imgcodecs/imgcodecs.hpp>
#endif #endif
#include <glog/logging.h>
#include <iomanip> #include <iomanip>
#include <limits> #include <limits>
#include <stdexcept> #include <stdexcept>
#include <utility> #include <utility>
#include "mynteye/files.h" #include "mynteye/files.h"
#include "mynteye/logger.h"
#define FULL_PRECISION \ #define FULL_PRECISION \
std::fixed << std::setprecision(std::numeric_limits<double>::max_digits10) std::fixed << std::setprecision(std::numeric_limits<double>::max_digits10)

View File

@ -14,7 +14,7 @@
#include <opencv2/highgui/highgui.hpp> #include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp> #include <opencv2/imgproc/imgproc.hpp>
#include "mynteye/glog_init.h" #include "mynteye/logger.h"
#include "mynteye/device.h" #include "mynteye/device.h"
#include "mynteye/utils.h" #include "mynteye/utils.h"

View File

@ -11,7 +11,7 @@
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
#include "mynteye/glog_init.h" #include "mynteye/logger.h"
#include "mynteye/device.h" #include "mynteye/device.h"
#include "mynteye/utils.h" #include "mynteye/utils.h"

View File

@ -15,12 +15,11 @@
#include <opencv2/core/core.hpp> #include <opencv2/core/core.hpp>
#include <glog/logging.h>
#include <vector> #include <vector>
#include "mynteye/device.h" #include "mynteye/device.h"
#include "mynteye/files.h" #include "mynteye/files.h"
#include "mynteye/logger.h"
MYNTEYE_BEGIN_NAMESPACE MYNTEYE_BEGIN_NAMESPACE

View File

@ -11,7 +11,7 @@
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
#include "mynteye/glog_init.h" #include "mynteye/logger.h"
#include "mynteye/device.h" #include "mynteye/device.h"
#include "mynteye/utils.h" #include "mynteye/utils.h"

View File

@ -11,7 +11,7 @@
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
#include "mynteye/glog_init.h" #include "mynteye/logger.h"
#include "mynteye/device.h" #include "mynteye/device.h"
#include "mynteye/utils.h" #include "mynteye/utils.h"

View File

@ -11,7 +11,7 @@
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
#include "mynteye/glog_init.h" #include "mynteye/logger.h"
#include "mynteye/device.h" #include "mynteye/device.h"
#include "mynteye/utils.h" #include "mynteye/utils.h"

View File

@ -26,7 +26,7 @@
#include <vector> #include <vector>
#include "mynteye/api.h" #include "mynteye/api.h"
#include "mynteye/glog_init.h" #include "mynteye/logger.h"
#include "mynteye/utils.h" #include "mynteye/utils.h"
#include "array_indexing_suite.hpp" #include "array_indexing_suite.hpp"
@ -451,7 +451,7 @@ BOOST_PYTHON_MODULE(mynteye_py) {
bp::register_ptr_to_python<std::shared_ptr<APIWrap>>(); bp::register_ptr_to_python<std::shared_ptr<APIWrap>>();
// glog_init.h - glog_init // logger.h - glog_init
bp::class_<glog_init, boost::noncopyable>("glog_init", bp::no_init) bp::class_<glog_init, boost::noncopyable>("glog_init", bp::no_init)
.def("create", &glog_init_create) .def("create", &glog_init_create)

View File

@ -14,7 +14,7 @@
#include <nodelet/loader.h> #include <nodelet/loader.h>
#include <ros/ros.h> #include <ros/ros.h>
#include "mynteye/glog_init.h" #include "mynteye/logger.h"
int main(int argc, char *argv[]) { int main(int argc, char *argv[]) {
glog_init _(argc, argv); glog_init _(argc, argv);

View File

@ -28,8 +28,6 @@
#include <mynt_eye_ros_wrapper/GetInfo.h> #include <mynt_eye_ros_wrapper/GetInfo.h>
#include <mynt_eye_ros_wrapper/Temp.h> #include <mynt_eye_ros_wrapper/Temp.h>
#include <glog/logging.h>
#define _USE_MATH_DEFINES #define _USE_MATH_DEFINES
#include <cmath> #include <cmath>
#include <map> #include <map>
@ -38,6 +36,7 @@
#include "mynteye/api.h" #include "mynteye/api.h"
#include "mynteye/context.h" #include "mynteye/context.h"
#include "mynteye/device.h" #include "mynteye/device.h"
#include "mynteye/logger.h"
#define FULL_PRECISION \ #define FULL_PRECISION \
std::fixed << std::setprecision(std::numeric_limits<double>::max_digits10) std::fixed << std::setprecision(std::numeric_limits<double>::max_digits10)