|
template<class T > |
ImgBasePtrPtr< T > | icl::core::bpp (Img< T > *image) |
| utility function to cast an Img<T> implicitly into an ImgBase ** More...
|
|
template<class T > |
ImgBasePtrPtr< T > | icl::core::bpp (Img< T > &image) |
| utility function to cast an Img<T>* implicitly into an ImgBase ** More...
|
|
template<class T > |
static T | icl::core::p2o (T *ptr) |
| Conversion function to transform a pointer into an object. More...
|
|
template<class ImgType > |
const ImgType * | icl::core::combineImages (const std::vector< const ImgType * > &vec) |
| Combine several images using shallow copy. More...
|
|
template<class ImgType > |
ImgType * | icl::core::combineImages (const std::vector< ImgType * > &vec) |
| Combine several images using shallow copy. Non-const version. More...
|
|
template<class T > |
void | icl::core::deepCopyChannel (const Img< T > *src, int srcC, Img< T > *dst, int dstC) |
| Copies the channel from one image to another. More...
|
|
template<class S , class D > |
void | icl::core::convertChannel (const Img< S > *src, int srcC, Img< D > *dst, int dstC) |
| copies/converts the data from one image to another image (IPP-OPTIMIZED) More...
|
|
template<class T > |
void | icl::core::clearChannelROI (Img< T > *im, int c, T clearVal, const utils::Point &offs, const utils::Size &size) |
| sets an arbitrary image ROI to a given value More...
|
|
template<class T > |
void | icl::core::deepCopyChannelROI (const Img< T > *src, int srcC, const utils::Point &srcOffs, const utils::Size &srcSize, Img< T > *dst, int dstC, const utils::Point &dstOffs, const utils::Size &dstSize) |
| copies the channel roi from one image to another More...
|
|
|
scales an image channels ROI into another images ROI (with implicit type conversion) (IPP-OPTIMIZED)
|
template<class T > |
ICLCore_API void | icl::core::scaledCopyChannelROI (const Img< T > *src, int srcC, const utils::Point &srcOffs, const utils::Size &srcSize, Img< T > *dst, int dstC, const utils::Point &dstOffs, const utils::Size &dstSize, scalemode eScaleMode) |
|
template<class T > |
ICLCore_API void | icl::core::flippedCopyChannelROI (axis eAxis, const Img< T > *src, int srcC, const utils::Point &srcOffs, const utils::Size &srcSize, Img< T > *dst, int dstC, const utils::Point &dstOffs, const utils::Size &dstSize) |
| mirror copy ROI data from one image to the ROI of another image (IPP-OPTIMIZED) More...
|
|
ICLCore_API void | icl::core::flippedCopy (axis eAxis, const ImgBase *poSrc, ImgBase **ppoDst=0) |
| mirror copy of an image from source to destination image (1:1 copy) More...
|
|
ICLCore_API void | icl::core::flippedCopyROI (axis eAxis, const ImgBase *poSrc, ImgBase **ppoDst=0) |
| mirror copy of an images ROI into a destination images ROI More...
|
|