Lines Matching refs:WImageC
113 template<typename T, int C> class WImageC; variable
122 typedef WImageC<uchar, 1> WImage1_b;
126 typedef WImageC<uchar, 3> WImage3_b;
134 typedef WImageC<float, 1> WImage1_f;
138 typedef WImageC<float, 3> WImage3_f;
148 typedef WImageC<short, 1> WImage1_16s;
152 typedef WImageC<short, 3> WImage3_16s;
160 typedef WImageC<ushort, 1> WImage1_16u;
164 typedef WImageC<ushort, 3> WImage3_16u;
260 class WImageC : public WImage<T>
266 explicit WImageC(IplImage* img) : WImage<T>(img) { in WImageC() function
274 void CopyFrom(const WImageC<T, C>& src) { in CopyFrom()
280 virtual ~WImageC() = 0;
286 WImageC(const WImageC&);
287 void operator=(const WImageC&);
358 class WImageBufferC : public WImageC<T, C>
365 WImageBufferC() : WImageC<T, C>(0) {} in WImageBufferC()
367 WImageBufferC(int width, int height) : WImageC<T, C>(0) { in WImageBufferC()
373 explicit WImageBufferC(IplImage* img) : WImageC<T, C>(img) {} in WImageBufferC()
382 WImageC<T, C>::SetIpl(img); in SetIpl()
386 void CloneFrom(const WImageC<T, C>& src) { in CloneFrom()
400 WImageC<T, C>::SetIpl(0); in ReleaseImage()
454 class WImageViewC : public WImageC<T, C>
467 WImageViewC(WImageC<T, C>* img,
475 WImageViewC(IplImage* img) : WImageC<T, C>(img) {} in WImageViewC()
480 WImageViewC(const WImageC<T, C>& img) : WImageC<T, C>(0) { in WImageViewC()
482 WImageC<T, C>::SetIpl(&header_); in WImageViewC()
484 WImageViewC(const WImageViewC<T, C>& img) : WImageC<T, C>(0) { in WImageViewC()
486 WImageC<T, C>::SetIpl(&header_); in WImageViewC()
489 WImageViewC& operator=(const WImageC<T, C>& img) {
491 WImageC<T, C>::SetIpl(&header_);
496 WImageC<T, C>::SetIpl(&header_);
525 template<typename T, int C> inline WImageC<T, C>::~WImageC() {} in ~WImageC()
546 WImageC<T, C>::SetIpl(cvCreateImage(cvSize(width, height),WImage<T>::Depth(), C)); in Allocate()
577 WImageViewC<T, C>::WImageViewC(WImageC<T, C>* img, int c, int r, int width, int height) in WImageViewC()
578 : WImageC<T, C>(0) in WImageViewC()
584 WImageC<T, C>::SetIpl(&header_); in WImageViewC()
588 WImageViewC<T, C>::WImageViewC() : WImageC<T, C>(0) { in WImageViewC()
591 WImageC<T, C>::SetIpl(&header_); in WImageViewC()
596 : WImageC<T, C>(0) in WImageViewC()
603 WImageC<T, C>::SetIpl(&header_); in WImageViewC()
613 WImageViewC<T, C> WImageC<T, C>::View(int c, int r, int width, int height) { in View()