⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 smallblurryimage.h

📁 this is software for visual SLAM
💻 H
字号:
// -*- c++ -*-// Copyright 2008 Isis Innovation Limited//// SmallBlurryImage - A small and blurry representation of an image.// used by the relocaliser.#ifndef __SMALLBLURRYIMAGE_H#define __SMALLBLURRYIMAGE_H#include <cvd/image.h>#include <cvd/byte.h>#include <TooN/se2.h>#include <TooN/se3.h>#include "KeyFrame.h"#include "ATANCamera.h"class SmallBlurryImage{ public:  SmallBlurryImage();  SmallBlurryImage(KeyFrame &kf);  void MakeFromKF(KeyFrame &kf);  void MakeJacs();  double ZMSSD(SmallBlurryImage &other);  std::pair<SE2,double> IteratePosRelToTarget(SmallBlurryImage &other, int nIterations = 10);  static SE3 SE3fromSE2(SE2 se2, ATANCamera camera);  protected:  CVD::Image<CVD::byte> mimSmall;  CVD::Image<float> mimTemplate;  CVD::Image<Vector<2> > mimImageJacs;  bool mbMadeJacs;  static CVD::ImageRef mirSize;};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -