📄 descriptor.h
字号:
#ifndef _DESCRIPTOR_H#define _DESCRIPTOR_H#include <vector>using namespace std;class Descriptor{ public: // its location in the image float xi; float yi; // its feature vector vector<double> fv; // the trival constructor Descriptor(){} Descriptor(float x, float y, vector<double> const& f) : xi(x), yi(y), fv(f){} };#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -