Skip to content

Commit

Permalink
Add missing headers (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
sarlinpe committed Jan 11, 2024
1 parent 7a5888c commit 3ca9cc7
Show file tree
Hide file tree
Showing 12 changed files with 24 additions and 1 deletion.
2 changes: 2 additions & 0 deletions pycolmap/feature/sift.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
#include "pycolmap/helpers.h"
#include "pycolmap/utils.h"

#include <memory>

#include <Eigen/Core>
#include <FreeImage.h>
#include <pybind11/numpy.h>
Expand Down
3 changes: 2 additions & 1 deletion pycolmap/helpers.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@

#include "pycolmap/log_exceptions.h"

#include <iostream>
#include <memory>
#include <regex>
#include <sstream>
#include <string>

#include <Eigen/Core>
Expand Down
2 changes: 2 additions & 0 deletions pycolmap/pipeline/extract_features.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
#include "pycolmap/log_exceptions.h"
#include "pycolmap/utils.h"

#include <memory>

#include <pybind11/iostream.h>
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
Expand Down
2 changes: 2 additions & 0 deletions pycolmap/pipeline/images.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
#include "pycolmap/helpers.h"
#include "pycolmap/log_exceptions.h"

#include <memory>

#include <glog/logging.h>
#include <pybind11/iostream.h>
#include <pybind11/pybind11.h>
Expand Down
2 changes: 2 additions & 0 deletions pycolmap/pipeline/match_features.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
#include "pycolmap/log_exceptions.h"
#include "pycolmap/utils.h"

#include <memory>

#include <pybind11/iostream.h>
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
Expand Down
1 change: 1 addition & 0 deletions pycolmap/scene/camera.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include "pycolmap/helpers.h"
#include "pycolmap/log_exceptions.h"

#include <memory>
#include <sstream>

#include <pybind11/eigen.h>
Expand Down
3 changes: 3 additions & 0 deletions pycolmap/scene/correspondence_graph.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@

#include "pycolmap/log_exceptions.h"

#include <memory>
#include <sstream>

#include <pybind11/eigen.h>
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
Expand Down
1 change: 1 addition & 0 deletions pycolmap/scene/image.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include "pycolmap/helpers.h"
#include "pycolmap/log_exceptions.h"

#include <memory>
#include <sstream>

#include <pybind11/eigen.h>
Expand Down
3 changes: 3 additions & 0 deletions pycolmap/scene/point2D.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
#include "pycolmap/helpers.h"
#include "pycolmap/log_exceptions.h"

#include <memory>
#include <sstream>

#include <Eigen/StdVector>
#include <pybind11/eigen.h>
#include <pybind11/pybind11.h>
Expand Down
3 changes: 3 additions & 0 deletions pycolmap/scene/point3D.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
#include "pycolmap/helpers.h"
#include "pycolmap/log_exceptions.h"

#include <memory>
#include <sstream>

#include <pybind11/eigen.h>
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
Expand Down
1 change: 1 addition & 0 deletions pycolmap/scene/reconstruction.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include "pycolmap/log_exceptions.h"

#include <memory>
#include <sstream>

#include <pybind11/eigen.h>
#include <pybind11/pybind11.h>
Expand Down
2 changes: 2 additions & 0 deletions pycolmap/sfm/incremental_triangulator.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

#include "pycolmap/helpers.h"

#include <memory>

#include <pybind11/eigen.h>
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
Expand Down

0 comments on commit 3ca9cc7

Please sign in to comment.