ACloudViewer  3.9.4
A Modern Library for 3D Data Processing
warp.cc File Reference
#include "base/warp.h"
#include "VLFeat/imopv.h"
#include "util/logging.h"
Include dependency graph for warp.cc:

Go to the source code of this file.

Namespaces

 colmap
 

Functions

void colmap::WarpImageBetweenCameras (const Camera &source_camera, const Camera &target_camera, const Bitmap &source_image, Bitmap *target_image)
 
void colmap::WarpImageWithHomography (const Eigen::Matrix3d &H, const Bitmap &source_image, Bitmap *target_image)
 
void colmap::WarpImageWithHomographyBetweenCameras (const Eigen::Matrix3d &H, const Camera &source_camera, const Camera &target_camera, const Bitmap &source_image, Bitmap *target_image)
 
void colmap::ResampleImageBilinear (const float *data, const int rows, const int cols, const int new_rows, const int new_cols, float *resampled)
 
void colmap::SmoothImage (const float *data, const int rows, const int cols, const float sigma_r, const float sigma_c, float *smoothed)
 
void colmap::DownsampleImage (const float *data, const int rows, const int cols, const int new_rows, const int new_cols, float *downsampled)