Lines Matching refs:WImageViewC

115 template<typename T, int C> class WImageViewC;  variable
123 typedef WImageViewC<uchar, 1> WImageView1_b;
127 typedef WImageViewC<uchar, 3> WImageView3_b;
135 typedef WImageViewC<float, 1> WImageView1_f;
139 typedef WImageViewC<float, 3> WImageView3_f;
149 typedef WImageViewC<short, 1> WImageView1_16s;
153 typedef WImageViewC<short, 3> WImageView3_16s;
161 typedef WImageViewC<ushort, 1> WImageView1_16u;
165 typedef WImageViewC<ushort, 3> WImageView3_16u;
271 WImageViewC<T, C> View(int c, int r, int width, int height);
454 class WImageViewC : public WImageC<T, C>
461 WImageViewC();
463 virtual ~WImageViewC() {} in ~WImageViewC()
467 WImageViewC(WImageC<T, C>* img,
471 WImageViewC(T* data, int width, int height, int width_step = -1);
475 WImageViewC(IplImage* img) : WImageC<T, C>(img) {} in WImageViewC() function
480 WImageViewC(const WImageC<T, C>& img) : WImageC<T, C>(0) { in WImageViewC() function
484 WImageViewC(const WImageViewC<T, C>& img) : WImageC<T, C>(0) { in WImageViewC() function
489 WImageViewC& operator=(const WImageC<T, C>& img) {
494 WImageViewC& operator=(const WImageViewC<T, C>& img) {
577 WImageViewC<T, C>::WImageViewC(WImageC<T, C>* img, int c, int r, int width, int height) in WImageViewC() function
588 WImageViewC<T, C>::WImageViewC() : WImageC<T, C>(0) { in WImageViewC() function
595 WImageViewC<T, C>::WImageViewC(T* data, int width, int height, int width_step) in WImageViewC() function
613 WImageViewC<T, C> WImageC<T, C>::View(int c, int r, int width, int height) { in View()
614 return WImageViewC<T, C>(this, c, r, width, height); in View()