Home | History | Annotate | Download | only in highgui

Lines Matching refs:width

75 		width = 0;
96 int width; // the width of the images received over the socket
115 width = _width;
117 if (width <= 0 || height <= 0)
119 LOGV("Invalid width or height!");
141 readBufSize = width * height * sizeof(int);
158 width = 0;
187 static IplImage* loadPixels(char* pixels, int width, int height) {
190 IplImage *img = cvCreateImage(cvSize(width, height), IPL_DEPTH_8U, 3);
193 pos = y * width * int_size;
194 for ( x = 0; x < width; x++, pos += int_size ) {
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) )