forked from aerolalit/RANSAC-Algorithm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHeader.hpp
More file actions
29 lines (24 loc) · 674 Bytes
/
Header.hpp
File metadata and controls
29 lines (24 loc) · 674 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
//
// Header.hpp
// cppransac
//
// Created by ललित सिंह on 09/11/2016.
// Copyright © 2016 ललित सिंह. All rights reserved.
//
#ifndef Header_hpp
#define Header_hpp
#include <stdio.h>
#include "mypoint2f.hpp"
#include "LinearEqu.hpp"
#include <vector>
struct internsectionPoint{
bool doesIntersect;
mypoint2f point;
};
std::vector<mypoint2f> compliment(std::vector<mypoint2f>, std::vector<mypoint2f>);
double abs(double);
double sqr(double sqr);
double distance(mypoint2f , mypoint2f);
double determinant(double, double, double, double);
internsectionPoint solveLinearEquation(LinearEqu, LinearEqu);
#endif /* Header_hpp */