KJB
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
m_flip.h
Go to the documentation of this file.
1 /* $Id: m_flip.h 15079 2013-08-01 09:12:00Z predoehl $ */
2 
3 #ifndef KJB_CPP_EDGE_FLIP_H
4 #define KJB_CPP_EDGE_FLIP_H
5 
6 #include <m_cpp/m_matrix.h>
7 
8 namespace kjb
9 {
10 
12 inline void flip_matrix_ud(Matrix& m)
13 {
14  m.ow_vertical_flip();
15 }
16 
18 inline void flip_matrix_lr(Matrix& m)
19 {
21 }
22 
23 } // namespace kjb
24 
25 #endif
Definition for the Matrix class, a thin wrapper on the KJB Matrix struct and its related functionalit...
void flip_matrix_lr(Matrix &m)
deprecated synonym for Matrix::ow_horizontal_flip
Definition: m_flip.h:18
void ow_vertical_flip()
flip the matrix vertically (swap last, first row, etc.)
Definition: m_matrix.cpp:1877
void ow_horizontal_flip()
flip the matrix horizontally (swap left, right columns, etc.)
Definition: m_matrix.cpp:1884
This class implements matrices, in the linear-algebra sense, with real-valued elements.
Definition: m_matrix.h:94
for m
Definition: APPgetLargeConnectedEdges.m:64
void flip_matrix_ud(Matrix &m)
deprecated synonym for Matrix::ow_vertical_flip
Definition: m_flip.h:12