Skip to content

Commit

Permalink
all: Make compile with changes perform in VW
Browse files Browse the repository at this point in the history
  • Loading branch information
Zack Moratto committed Dec 24, 2013
1 parent 8479071 commit 8661219
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 11 deletions.
1 change: 1 addition & 0 deletions src/asp/Core/InterestPointMatching.h
Expand Up @@ -22,6 +22,7 @@
#include <asp/Core/IntegralAutoGainDetector.h> #include <asp/Core/IntegralAutoGainDetector.h>


#include <vw/Core.h> #include <vw/Core.h>
#include <vw/Core/Stopwatch.h>
#include <vw/Math.h> #include <vw/Math.h>
#include <vw/Image/ImageViewBase.h> #include <vw/Image/ImageViewBase.h>
#include <vw/Image/MaskViews.h> #include <vw/Image/MaskViews.h>
Expand Down
3 changes: 2 additions & 1 deletion src/asp/Core/OrthoRasterizer.h
Expand Up @@ -15,7 +15,6 @@
// limitations under the License. // limitations under the License.
// __END_LICENSE__ // __END_LICENSE__



/// \file OrthoRasterizer.h /// \file OrthoRasterizer.h
/// ///
/// Given a point image and corresponding texture, this class /// Given a point image and corresponding texture, this class
Expand All @@ -33,6 +32,8 @@
// The SoftwareRenderer actual "renders" the 3D scene, textures it, // The SoftwareRenderer actual "renders" the 3D scene, textures it,
// and then returns a 2D orthographic view. // and then returns a 2D orthographic view.
#include <asp/Core/SoftwareRenderer.h> #include <asp/Core/SoftwareRenderer.h>

#include <boost/foreach.hpp>
#include <boost/math/special_functions/next.hpp> #include <boost/math/special_functions/next.hpp>


namespace vw { namespace vw {
Expand Down
2 changes: 1 addition & 1 deletion src/asp/Core/StereoSettings.cc
Expand Up @@ -20,7 +20,7 @@
/// ///
#include <fstream> #include <fstream>


#include <vw/Core/Thread.h> #include <vw/Core/RunOnce.h>
#include <vw/Core/Log.h> #include <vw/Core/Log.h>


#include <asp/Core/Common.h> #include <asp/Core/Common.h>
Expand Down
2 changes: 2 additions & 0 deletions src/asp/IsisIO/IsisInterface.cc
Expand Up @@ -23,6 +23,8 @@
#include <asp/IsisIO/IsisInterfaceMapLineScan.h> #include <asp/IsisIO/IsisInterfaceMapLineScan.h>
#include <asp/IsisIO/IsisInterfaceLineScan.h> #include <asp/IsisIO/IsisInterfaceLineScan.h>


#include <iomanip>

// VW // VW
#include <vw/Core.h> #include <vw/Core.h>


Expand Down
3 changes: 3 additions & 0 deletions src/asp/Sessions/RPC/RPCModel.cc
Expand Up @@ -23,6 +23,9 @@
#include <vw/FileIO/DiskImageResourceGDAL.h> #include <vw/FileIO/DiskImageResourceGDAL.h>
#include <vw/Cartography.h> #include <vw/Cartography.h>


#include <gdal.h>
#include <gdal_priv.h>

using namespace vw; using namespace vw;


namespace asp { namespace asp {
Expand Down
2 changes: 2 additions & 0 deletions src/asp/Tools/bundlevis.cc
Expand Up @@ -22,6 +22,8 @@
#include <vw/Core/ProgressCallback.h> #include <vw/Core/ProgressCallback.h>
#include <asp/Tools/bundlevis.h> #include <asp/Tools/bundlevis.h>


#include <boost/foreach.hpp>

using namespace vw; using namespace vw;


// This builds the 3 Axis that represents the camera // This builds the 3 Axis that represents the camera
Expand Down
20 changes: 11 additions & 9 deletions src/asp/Tools/orbitviz.cc
Expand Up @@ -22,15 +22,6 @@
/************************************************************************ /************************************************************************
* File: orbitviz.cc * File: orbitviz.cc
************************************************************************/ ************************************************************************/
#include <boost/algorithm/string.hpp>
#include <boost/program_options.hpp>
#include <boost/filesystem/path.hpp>
#include <boost/filesystem/operations.hpp>
#include <boost/filesystem/convenience.hpp>
#include <boost/filesystem/fstream.hpp>
namespace po = boost::program_options;
namespace fs = boost::filesystem;

#include <vw/Core.h> #include <vw/Core.h>
#include <vw/Math.h> #include <vw/Math.h>
#include <vw/FileIO/KML.h> #include <vw/FileIO/KML.h>
Expand All @@ -47,6 +38,17 @@ using namespace vw::cartography;
#include <asp/IsisIO/IsisCameraModel.h> #include <asp/IsisIO/IsisCameraModel.h>
#endif #endif


#include <iomanip>

#include <boost/algorithm/string.hpp>
#include <boost/program_options.hpp>
#include <boost/filesystem/path.hpp>
#include <boost/filesystem/operations.hpp>
#include <boost/filesystem/convenience.hpp>
#include <boost/filesystem/fstream.hpp>
namespace po = boost::program_options;
namespace fs = boost::filesystem;

struct Options : public asp::BaseOptions { struct Options : public asp::BaseOptions {
Options() : loading_image_camera_order(true) {} Options() : loading_image_camera_order(true) {}
// Input // Input
Expand Down
2 changes: 2 additions & 0 deletions src/asp/Tools/point2dem.cc
Expand Up @@ -29,6 +29,8 @@ using namespace vw::cartography;
#include <asp/Core/AntiAliasing.h> #include <asp/Core/AntiAliasing.h>
namespace po = boost::program_options; namespace po = boost::program_options;


#include <vw/Core/Stopwatch.h>

#if defined(VW_HAVE_PKG_GDAL) && VW_HAVE_PKG_GDAL==1 #if defined(VW_HAVE_PKG_GDAL) && VW_HAVE_PKG_GDAL==1
#include "ogr_spatialref.h" #include "ogr_spatialref.h"
#endif #endif
Expand Down

0 comments on commit 8661219

Please sign in to comment.