Home | History | Annotate | Download | only in opencv

Lines Matching refs:height

72 												  jint height);

99 jint height);
107 jint height);
146 IplImage* loadPixels(int* pixels, int width, int height) {
149 IplImage *img = cvCreateImage(cvSize(width, height), IPL_DEPTH_8U, 3);
151 for ( y = 0; y < height; y++ ) {
169 int height,
179 assert( data && width > 0 && height > 0 && step >= fileStep );
186 int testSize = fileStep*height + headerSize;
188 sprintf(log_str, "fileStep*height + headerSize=%i", testSize);
195 m_strm->PutDWord( fileStep*height + headerSize ); // file size
202 m_strm->PutDWord( height );
219 data += step*(height - 1);
220 for( ; height--; data -= step )