This algorithm converts images to median threshold bitmaps (1 for pixels brighter than median luminance and 0 otherwise) and than aligns the resulting bitmaps using bit operations.
[詳解]
|
virtual CV_WRAP void | process (InputArrayOfArrays src, std::vector< Mat > &dst, InputArray times, InputArray response) CV_OVERRIDE=0 |
| Aligns images [詳解]
|
|
virtual CV_WRAP void | process (InputArrayOfArrays src, std::vector< Mat > &dst)=0 |
| Short version of process, that doesn't take extra arguments. [詳解]
|
|
virtual CV_WRAP Point | calculateShift (InputArray img0, InputArray img1)=0 |
| Calculates shift between two images, i. e. how to shift the second image to correspond it with the first. [詳解]
|
|
virtual CV_WRAP void | shiftMat (InputArray src, OutputArray dst, const Point shift)=0 |
| Helper function, that shift Mat filling new regions with zeros. [詳解]
|
|
virtual CV_WRAP void | computeBitmaps (InputArray img, OutputArray tb, OutputArray eb)=0 |
| Computes median threshold and exclude bitmaps of given image. [詳解]
|
|
virtual CV_WRAP int | getMaxBits () const =0 |
|
virtual CV_WRAP void | setMaxBits (int max_bits)=0 |
|
virtual CV_WRAP int | getExcludeRange () const =0 |
|
virtual CV_WRAP void | setExcludeRange (int exclude_range)=0 |
|
virtual CV_WRAP bool | getCut () const =0 |
|
virtual CV_WRAP void | setCut (bool value)=0 |
|
virtual CV_WRAP void | clear () |
| Clears the algorithm state [詳解]
|
|
virtual void | write (FileStorage &fs) const |
| Stores algorithm parameters in a file storage [詳解]
|
|
CV_WRAP void | write (const Ptr< FileStorage > &fs, const String &name=String()) const |
| simplified API for language bindings これはオーバーロードされたメンバ関数です。利便性のために用意されています。元の関数との違いは引き数のみです。
|
|
virtual CV_WRAP void | read (const FileNode &fn) |
| Reads algorithm parameters from a file storage [詳解]
|
|
virtual CV_WRAP bool | empty () const |
| Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read [詳解]
|
|
virtual CV_WRAP void | save (const String &filename) const |
|
virtual CV_WRAP String | getDefaultName () const |
|
This algorithm converts images to median threshold bitmaps (1 for pixels brighter than median luminance and 0 otherwise) and than aligns the resulting bitmaps using bit operations.
It is invariant to exposure, so exposure values and camera response are not necessary.
In this implementation new image regions are filled with zeros.
For more information see [GW03] .