WImageViewC        60 modules/core/include/opencv2/core/wimage.hpp template<typename T, int C> class WImageViewC;
WImageViewC        68 modules/core/include/opencv2/core/wimage.hpp typedef WImageViewC<uchar, 1>    WImageView1_b;
WImageViewC        72 modules/core/include/opencv2/core/wimage.hpp typedef WImageViewC<uchar, 3>    WImageView3_b;
WImageViewC        80 modules/core/include/opencv2/core/wimage.hpp typedef WImageViewC<float, 1>    WImageView1_f;
WImageViewC        84 modules/core/include/opencv2/core/wimage.hpp typedef WImageViewC<float, 3>    WImageView3_f;
WImageViewC        94 modules/core/include/opencv2/core/wimage.hpp typedef WImageViewC<short, 1>    WImageView1_16s;
WImageViewC        98 modules/core/include/opencv2/core/wimage.hpp typedef WImageViewC<short, 3>    WImageView3_16s;
WImageViewC       106 modules/core/include/opencv2/core/wimage.hpp typedef WImageViewC<ushort, 1>    WImageView1_16u;
WImageViewC       110 modules/core/include/opencv2/core/wimage.hpp typedef WImageViewC<ushort, 3>    WImageView3_16u;
WImageViewC       267 modules/core/include/opencv2/core/wimage.hpp     WImageViewC<T, C> View(int c, int r, int width, int height);
WImageViewC       450 modules/core/include/opencv2/core/wimage.hpp     WImageViewC();
WImageViewC       456 modules/core/include/opencv2/core/wimage.hpp     WImageViewC(WImageC<T, C>* img,
WImageViewC       460 modules/core/include/opencv2/core/wimage.hpp     WImageViewC(T* data, int width, int height, int width_step = -1);
WImageViewC       464 modules/core/include/opencv2/core/wimage.hpp     WImageViewC(IplImage* img) : WImageC<T, C>(img) {}
WImageViewC       469 modules/core/include/opencv2/core/wimage.hpp     WImageViewC(const WImageC<T, C>& img) : WImageC<T, C>(0) {
WImageViewC       473 modules/core/include/opencv2/core/wimage.hpp     WImageViewC(const WImageViewC<T, C>& img) : WImageC<T, C>(0) {
WImageViewC       478 modules/core/include/opencv2/core/wimage.hpp     WImageViewC& operator=(const WImageC<T, C>& img) {
WImageViewC       483 modules/core/include/opencv2/core/wimage.hpp     WImageViewC& operator=(const WImageViewC<T, C>& img) {
WImageViewC       557 modules/core/include/opencv2/core/wimage.hpp WImageViewC<T, C>::WImageViewC(WImageC<T, C>* img, int c, int r, int width, int height)
WImageViewC       568 modules/core/include/opencv2/core/wimage.hpp WImageViewC<T, C>::WImageViewC() : WImageC<T, C>(0) {
WImageViewC       575 modules/core/include/opencv2/core/wimage.hpp WImageViewC<T, C>::WImageViewC(T* data, int width, int height, int width_step)
WImageViewC       593 modules/core/include/opencv2/core/wimage.hpp WImageViewC<T, C> WImageC<T, C>::View(int c, int r, int width, int height) {
WImageViewC       594 modules/core/include/opencv2/core/wimage.hpp     return WImageViewC<T, C>(this, c, r, width, height);