-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDepthFeatureExtractor.h
More file actions
executable file
·43 lines (31 loc) · 1004 Bytes
/
DepthFeatureExtractor.h
File metadata and controls
executable file
·43 lines (31 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//
// DepthFeatureExtractor.h
// Segmenthreetion
//
// Created by Albert Clapés on 24/05/13.
// Copyright (c) 2013 Albert Clapés. All rights reserved.
//
#ifndef __Segmenthreetion__DepthFeatureExtractor__
#define __Segmenthreetion__DepthFeatureExtractor__
#include "FeatureExtractor.h"
#include "DepthParametrization.hpp"
using namespace std;
class DepthFeatureExtractor : public FeatureExtractor
{
public:
DepthFeatureExtractor();
DepthFeatureExtractor(DepthParametrization dParam);
void setParam(DepthParametrization dParam);
void describe(ModalityGridData& data);
void describe(GridMat grid, GridMat gmask, cv::Mat gvalidness, GridMat& gdescriptors);
private:
/*
* Class attributes
*/
DepthParametrization m_DepthParam;
/*
* Private methods
*/
void describeNormalsOrients(const cv::Mat grid, const cv::Mat mask, cv::Mat & tNormalsOrientsHist);
};
#endif /* defined(__Segmenthreetion__DepthFeatureExtractor__) */