descriptor.h
来自「SIFT的c++实现」· C头文件 代码 · 共 29 行
H
29 行
#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 + =
减小字号Ctrl + -
显示快捷键?