forked from LauraFJulia/OrthographicPE
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.txt
65 lines (46 loc) · 2.58 KB
/
README.txt
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
59
60
61
62
63
64
65
Pose estimation of 3 views based on the orthographic model.
The algorithm uses only points visible in all 3 views. It implements the Tomasi and Kanade factorization method.
Laura F. Julia, <[email protected]>, Univ. Paris Est, LIGM, ENPC, France
Pascal Monasse, <[email protected]>, Univ. Paris Est, LIGM, ENPC, France
Version 1.2, January 2024
Future releases and updates:
https://github.com/pmonasse/OrthographicPE.git
This MATLAB(R) / GNU OCTAVE directory contains the code associated to the IPOL article "The Orthographic Projection Model for Pose Calibration of Long Focal Images" by Laura F. Julia, Pascal Monasse and Marc Pierrot-Deseilligny.
URL: https://doi.org/10.5201/ipol.2019.248
Files and folders
-----------------
data/ - folder with 3 example images and their correspondences by pairs
lib/ - folder with auxiliary Matlab functions
README.txt - this file
LICENSE.txt - license file
OrthographicPoseEstimation.m - main function for pose estimation of orthographic views
mainPoseEstimation.m - do I/O and call OrthographicPoseEstimation
example.m - example script
Setup and Usage
---------------
MATLAB
------
1. You must have MATLAB software installed on your computer.
2. The following toolbox is required:
* optimization_toolbox
3. Run the example script example.m to easily use the code. It contains all the necessary steps for the pose estimation of three perspective views using the orthographic model. The data used as example is in the data/ folder.
OCTAVE
------
1. You must have GNU Octave installed on you computer. You can install it in Ubuntu systems running the following command:
sudo apt-get install octave octave-optim
2. Run the example script example.m.
Copyright and Licence
---------------------
Copyright (c) 2017 Laura F. Julia <[email protected]>
2018 Pascal Monasse <[email protected]>
All rights reserved.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.