Go to the source code of this file.
Classes | |
| class | vil_flip_lr_image_resource |
| A generic_image adaptor that behaves like a flipped left to right version of its input. More... | |
| class | vil_flip_ud_image_resource |
| A generic_image adaptor that behaves like a flipped left to right version of its input. More... | |
Functions | |
| template<class T > | |
| vil_image_view< T > | vil_flip_lr (const vil_image_view< T > &v) |
| Create a reflected view in which i -> ni-1-i. More... | |
| template<class T > | |
| vil_image_view< T > | vil_flip_ud (const vil_image_view< T > &v) |
| Create a reflected view in which y -> nj-1-j. More... | |
| vil_image_resource_sptr | vil_flip_lr (const vil_image_resource_sptr &src) |
| Flip an image resource left to right. More... | |
| vil_image_resource_sptr | vil_flip_ud (const vil_image_resource_sptr &src) |
| Flip an image resource left to right. More... | |
Definition in file vil_flip.h.
|
inline |
Create a reflected view in which i -> ni-1-i.
i.e. vil_flip_lr(view)(i,j,p) = view(ni-1-i,j,p) O(1).
Definition at line 17 of file vil_flip.h.
| vil_image_resource_sptr vil_flip_lr | ( | const vil_image_resource_sptr & | src | ) |
Flip an image resource left to right.
Definition at line 14 of file vil_flip.cxx.
|
inline |
Create a reflected view in which y -> nj-1-j.
i.e. vil_flip_ud(view)(i,j,p) = view(i,nj-1-j,p) O(1).
Definition at line 30 of file vil_flip.h.
| vil_image_resource_sptr vil_flip_ud | ( | const vil_image_resource_sptr & | src | ) |
Flip an image resource left to right.
Definition at line 121 of file vil_flip.cxx.
1.8.15