#include <assert.h>#include <stdio.h>#include <stdlib.h>#include <vector>#include <string>#include <string.h>#include <sys/stat.h>#include <sys/types.h>#include "image.h"#include "matrix.h"#include "sfm.h"#include "LoadJPEG.h"
Go to the source code of this file.
Classes | |
| struct | point_t |
Functions | |
| int | main (int argc, char **argv) |
| void | ReadBundleFile (char *bundle_file, std::vector< camera_params_t > &cameras, std::vector< point_t > &points, double &bundle_version) |
| void | ReadListFile (char *list_file, std::vector< std::string > &files) |
| void | WritePMVS (const char *output_path, char *list_file, char *bundle_file, std::vector< std::string > images, std::vector< camera_params_t > &cameras) |
| int main | ( | int | argc, |
| char ** | argv | ||
| ) |
Definition at line 284 of file Bundle2PMVS2.cpp.
| void ReadBundleFile | ( | char * | bundle_file, |
| std::vector< camera_params_t > & | cameras, | ||
| std::vector< point_t > & | points, | ||
| double & | bundle_version | ||
| ) |
Definition at line 44 of file Bundle2PMVS2.cpp.
| void ReadListFile | ( | char * | list_file, |
| std::vector< std::string > & | files | ||
| ) |
Definition at line 26 of file Bundle2PMVS2.cpp.
| void WritePMVS | ( | const char * | output_path, |
| char * | list_file, | ||
| char * | bundle_file, | ||
| std::vector< std::string > | images, | ||
| std::vector< camera_params_t > & | cameras | ||
| ) |
Definition at line 144 of file Bundle2PMVS2.cpp.