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
|
diff --git a/wrap/io_trimesh/import_nvm.h b/wrap/io_trimesh/import_nvm.h
index c9e8fe22..e5e46507 100644
--- a/wrap/io_trimesh/import_nvm.h
+++ b/wrap/io_trimesh/import_nvm.h
@@ -85,13 +85,6 @@ static bool ReadHeader(FILE *fp,unsigned int &num_cams){
return true;
}
-static bool ReadHeader(const char * filename,unsigned int &/*num_cams*/, unsigned int &/*num_points*/){
- FILE *fp = fopen(filename, "r");
- if(!fp) return false;
- ReadHeader(fp);
- fclose(fp);
- return true;
-}
static int Open( OpenMeshType &m, std::vector<Shot<ScalarType> > & shots,
diff --git a/wrap/io_trimesh/import_out.h b/wrap/io_trimesh/import_out.h
index 01331bc5..c2cd86fe 100644
--- a/wrap/io_trimesh/import_out.h
+++ b/wrap/io_trimesh/import_out.h
@@ -85,14 +85,6 @@ static bool ReadHeader(FILE *fp,unsigned int &num_cams, unsigned int &num_points
return true;
}
-static bool ReadHeader(const char * filename,unsigned int &/*num_cams*/, unsigned int &/*num_points*/){
- FILE *fp = fopen(filename, "r");
- if(!fp) return false;
- ReadHeader(fp);
- fclose(fp);
- return true;
-}
-
static int Open( OpenMeshType &m, std::vector<Shot<ScalarType> > & shots,
std::vector<std::string > & image_filenames,
|