This repository is currently being migrated. It's locked while the migration is in progress.
forked from CihanTopal/ED_Lib
-
Notifications
You must be signed in to change notification settings - Fork 5
/
EDPF.h
58 lines (48 loc) · 1.73 KB
/
EDPF.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/**************************************************************************************************************
* Edge Drawing (ED) and Edge Drawing Parameter Free (EDPF) source codes.
* Copyright (C) Cuneyt Akinlar & Cihan Topal
* E-mails of the authors: cuneytakinlar@gmail.com, cihantopal@gmail.com
*
* Please cite the following papers if you use EDPF library:
*
* [1] C. Topal and C. Akinlar, “Edge Drawing: A Combined Real-Time Edge and Segment Detector,”
* Journal of Visual Communication and Image Representation, 23(6), 862-872,
*DOI: 10.1016/j.jvcir.2012.05.004 (2012).
*
* [2] C. Akinlar and C. Topal, “EDPF: A Real-time Parameter-free Edge Segment Detector with a False
*Detection Control,” International Journal of Pattern Recognition and Artificial Intelligence,
*26(1), DOI: 10.1142/S0218001412550026 (2012).
**************************************************************************************************************/
#ifndef _EDPF_
#define _EDPF_
#include "ED.h"
#define MAX_GRAD_VALUE 128 * 256
#define EPSILON 1.0
class EDPF : public ED
{
public:
struct Profile
{
double gaussian_blur;
double validate_edge_segments;
};
EDPF(const int _width, const int _height);
EDPF(cv::Mat srcImage);
EDPF(ED obj);
EDPF(EDColor obj);
void prealloc();
void process(cv::Mat _srcImage);
Profile getLastEDPFProfile() const;
private:
double divForTestSegment;
std::vector<double> H;
int np;
Profile lastEDPFProfile;
std::vector<int> grads;
void validateEdgeSegments();
void ComputePrewitt3x3(); // differs from base class's prewit function (calculates H)
void TestSegment(int i, int index1, int index2);
void ExtractNewSegments();
double NFA(double prob, int len);
};
#endif // ! _EDPF_