|
template<typename T > |
int | ecvl::vsize (const std::vector< T > &v) |
|
void | ecvl::RearrangeChannels (const Image &src, Image &dst, const std::string &channels) |
| Changes the order of the Image dimensions. More...
|
|
void | ecvl::RearrangeChannels (const Image &src, Image &dst, const std::string &channels, DataType new_type) |
| Same as RearrangeChannels(), with the chance to specify the DataType of the output Image. More...
|
|
void | ecvl::CopyImage (const Image &src, Image &dst, DataType new_type=DataType::none) |
| Copies the source Image into the destination Image. More...
|
|
void | ecvl::CopyImage (const Image &src, Image &dst, DataType new_type, const std::string &channels) |
| Same as CopyImage(), with the chance to specify the channels order of the output Image. More...
|
|
void | ecvl::ShallowCopyImage (const Image &src, Image &dst) |
| Performs a shallow copy of the source Image into the destination. More...
|
|
void | ecvl::ConvertTo (const Image &src, Image &dst, DataType dtype, bool saturate=true) |
| Convert Image to another DataType. More...
|
|