Home | History | Annotate | Download | only in highgui

Lines Matching refs:height

76 		height = 0;
97 int height; // the height of the images received over the socket
116 height = _height;
117 if (width <= 0 || height <= 0)
119 LOGV("Invalid width or height!");
141 readBufSize = width * height * sizeof(int);
159 height = 0;
187 static IplImage* loadPixels(char* pixels, int width, int height) {
190 IplImage *img = cvCreateImage(cvSize(width, height), IPL_DEPTH_8U, 3);
192 for ( y = 0; y < height; y++ ) {
264 frame = loadPixels(readBuf, width, height);
294 CvCapture* cvCreateCameraCapture_Socket( const char *address, const char *port, int width, int height )
297 if ( capture-> open(address, port, width, height) )