-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUtility.h
41 lines (35 loc) · 1.36 KB
/
Utility.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
//
// Utility.h
// Ride
//
// Created by William Henderson on 3/1/17.
// Copyright © 2017 Knock Softwae, Inc. All rights reserved.
//
#ifndef Utility_h
#define Utility_h
#include <opencv2/core/core.hpp>
#include <vector>
#ifndef RANDOM_FOREST_PRINT_TIMING
#define RANDOM_FOREST_PRINT_TIMING (0)
#endif
#if RANDOM_FOREST_PRINT_TIMING
#include <iostream>
#include <chrono>
#include <sys/time.h>
#define LOCAL_TIMING_START() std::chrono::high_resolution_clock::time_point _t1 = std::chrono::high_resolution_clock::now()
#define LOCAL_TIMING_FINISH(name) do { \
std::chrono::high_resolution_clock::time_point _t2 = std::chrono::high_resolution_clock::now(); \
std::cerr << name << ": " << std::chrono::duration_cast<std::chrono::nanoseconds>( _t2 - _t1 ).count() << " nanoseconds" << std::endl; } while (0)
#else
#define LOCAL_TIMING_START() do {} while (0)
#define LOCAL_TIMING_FINISH(name) do {} while (0)
#endif
using namespace std;
bool interpolateSplineRegular(float* inputX, float* inputY, int inputLength, float* outputY, int outputLength, float newSpacing, float initialOffset);
float max(cv::Mat mat);
double maxMean(cv::Mat mat, int windowSize);
double skewness(cv::Mat mat);
double kurtosis(cv::Mat mat);
float trapezoidArea(vector<float>::iterator start, vector<float>::iterator end);
float percentile(float *input, int length, float percentile);
#endif /* Utility_h */