OpenCV
3.0.0
Open Source Computer Vision
|
#include "mapshift.hpp"
Public Member Functions | |
MapShift (void) | |
MapShift (const cv::Vec< double, 2 > &shift) | |
~MapShift (void) | |
void | compose (const Map &map) |
const cv::Vec< double, 2 > & | getShift () const |
cv::Ptr< Map > | inverseMap (void) const |
void | inverseWarp (const cv::Mat &img1, cv::Mat &img2) const |
void | scale (double factor) |
Public Member Functions inherited from cv::reg::Map | |
virtual | ~Map (void) |
virtual void | warp (const cv::Mat &img1, cv::Mat &img2) const |
Defines an transformation that consists on a simple displacement
cv::reg::MapShift::MapShift | ( | void | ) |
Default constructor builds an identity map
cv::reg::MapShift::MapShift | ( | const cv::Vec< double, 2 > & | shift | ) |
Constructor providing explicit values
[in] | shift | Displacement |
cv::reg::MapShift::~MapShift | ( | void | ) |
Destructor
|
virtual |
Changes the map composing the current transformation with the one provided in the call. The order is first the current transformation, then the input argument.
[in] | map | Transformation to compose with. |
Implements cv::reg::Map.
|
inline |
Return displacement
Warps image to a new coordinate frame. The calculation is img2(x)=img1(T(x)), so in fact this is the inverse warping as we are taking the value of img1 with the forward transformation of the points.
[in] | img1 | Original image |
[out] | img2 | Warped image |
Implements cv::reg::Map.
|
virtual |
Scales the map by a given factor as if the coordinates system is expanded/compressed by that factor.
[in] | factor | Expansion if bigger than one, compression if smaller than one |
Implements cv::reg::Map.