Slide 71
Slide 71 text
Problem Definition
The Process of 3D Reconstruction
Framework Design and Implementation
Using the Framework for SfM
Module
Data structure
Framework overview
Implementation of a Module
11 #define UIPF MODULE INPUTS \
12 {”image” , DataDescription ( data : : OpenCVMat : : i d ( ) , \
13 ” the input image . ” )}
14
15 #define UIPF MODULE OUTPUTS \
16 {”image” , DataDescription ( data : : OpenCVMat : : i d ( ) , \
17 ” the r e s i z e d image . ” )}
18
19 #define UIPF MODULE PARAMS \
20 {” width ” , ParamDescription ( ”new width . ” ) } , \
21 {” he ig h t ” , ParamDescription ( ”new he i g h t . ” ) }
22
23 #include
24
25 void OpenCVResizeImage : : run () {
26 // Module Implementation goes here .
27 }
Carsten Brandt A Modular Framework for Image-based 3D Reconstruction May 18, 2017 13 / 24