Template Class Frame
Defined in File MechEyeFrame.hpp
Class Documentation
-
template<typename ElementType>
class mmind::api::Frame Definition of data structure in device capturing image.
Public Functions
-
inline Frame()
Constructor
-
inline ~Frame()
Destructor
-
inline const ElementType *data() const
Returns the pointer to the element data.
-
inline ElementType *data()
Returns the pointer to the element data.
-
inline const ElementType &operator[](std::size_t n) const
Returns a const element reference to the specified index in the Frame using the operator [].
-
inline ElementType &operator[](std::size_t n)
Returns a element reference to the specified index in the Frame using the operator [].
-
inline const ElementType &at(uint32_t row, uint32_t col) const
Returns a const element reference to the specified row and col index in the Frame.
-
inline ElementType &at(uint32_t row, uint32_t col)
Returns a element reference to the specified row and col index in the Frame.
-
inline Frame()