-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathThermalFeatureExtractor.h
executable file
·44 lines (32 loc) · 1.08 KB
/
ThermalFeatureExtractor.h
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
44
//
// ThermalFeatureExtractor.h
// Segmenthreetion
//
// Created by Albert Clapés on 24/05/13.
// Copyright (c) 2013 Albert Clapés. All rights reserved.
//
#ifndef __Segmenthreetion__ThermalFeatureExtractor__
#define __Segmenthreetion__ThermalFeatureExtractor__
#include "FeatureExtractor.h"
#include "ThermalParametrization.hpp"
using namespace std;
class ThermalFeatureExtractor : public FeatureExtractor
{
public:
ThermalFeatureExtractor();
ThermalFeatureExtractor(ThermalParametrization tParam);
void setParam(ThermalParametrization tParam);
void describe(ModalityGridData& data);
void describe(GridMat grid, GridMat gmask, cv::Mat gvalidness, GridMat& gdescriptors);
private:
/*
* Class attributes
*/
ThermalParametrization m_ThermalParam;
/*
* Private methods
*/
void describeThermalIntesities(cv::Mat grid, cv::Mat mask, cv::Mat & tIntensityHist);
void describeThermalGradOrients(cv::Mat grid, cv::Mat mask, cv::Mat & tGradOrientsHist);
};
#endif /* defined(__Segmenthreetion__ThermalFeatureExtractor__) */