Searched refs:img_width (Results 1 - 17 of 17) sorted by relevance

/external/opencv3/modules/features2d/src/kaze/
H A DAKAZEConfig.h20 , img_width(0)
43 int img_width; ///< Width of the input image member in struct:cv::AKAZEOptions
H A DKAZEConfig.h27 , img_width(0)
43 int img_width; member in struct:cv::KAZEOptions
H A DKAZEFeatures.cpp61 aux.Lx = Mat::zeros(options_.img_height, options_.img_width, CV_32F);
62 aux.Ly = Mat::zeros(options_.img_height, options_.img_width, CV_32F);
63 aux.Lxx = Mat::zeros(options_.img_height, options_.img_width, CV_32F);
64 aux.Lxy = Mat::zeros(options_.img_height, options_.img_width, CV_32F);
65 aux.Lyy = Mat::zeros(options_.img_height, options_.img_width, CV_32F);
66 aux.Lt = Mat::zeros(options_.img_height, options_.img_width, CV_32F);
67 aux.Lsmooth = Mat::zeros(options_.img_height, options_.img_width, CV_32F);
68 aux.Ldet = Mat::zeros(options_.img_height, options_.img_width, CV_32F);
167 for (int jx = 0; jx < options_.img_width; jx++)
253 for (int jx = 1; jx < options_.img_width
[all...]
H A DAKAZEFeatures.cpp54 level_width = (int)(options_.img_width*rfactor);
/external/libjpeg-turbo/simd/
H A Djsimd.h30 (JDIMENSION img_width, JSAMPARRAY input_buf, JSAMPIMAGE output_buf,
33 (JDIMENSION img_width, JSAMPARRAY input_buf, JSAMPIMAGE output_buf,
36 (JDIMENSION img_width, JSAMPARRAY input_buf, JSAMPIMAGE output_buf,
39 (JDIMENSION img_width, JSAMPARRAY input_buf, JSAMPIMAGE output_buf,
42 (JDIMENSION img_width, JSAMPARRAY input_buf, JSAMPIMAGE output_buf,
45 (JDIMENSION img_width, JSAMPARRAY input_buf, JSAMPIMAGE output_buf,
48 (JDIMENSION img_width, JSAMPARRAY input_buf, JSAMPIMAGE output_buf,
53 (JDIMENSION img_width, JSAMPARRAY input_buf, JSAMPIMAGE output_buf,
56 (JDIMENSION img_width, JSAMPARRAY input_buf, JSAMPIMAGE output_buf,
59 (JDIMENSION img_width, JSAMPARRA
[all...]
/external/opencv3/samples/python2/
H A Dkalman.py21 img_width = 500 variable
40 return (np.around(img_width/2 + img_width/3*cos(angle), 0).astype(int),
41 np.around(img_height/2 - img_width/3*sin(angle), 1).astype(int))
67 img = np.zeros((img_height, img_width, 3), np.uint8)
/external/eigen/demos/mandelbrot/
H A Dmandelbrot.cpp31 template<typename Real> void MandelbrotThread::render(int img_width, int img_height) argument
38 const int alignedWidth = (img_width/packetSize)*packetSize;
41 const double yradius = xradius * img_height / img_width;
45 Vector2 step(2*widget->xradius/img_width, 2*yradius/img_height);
50 int pix = y * img_width;
105 for(int x = alignedWidth; x < img_width; x++, pix++)
117 int img_width = widget->width()/widget->draft; local
122 render<float>(img_width, img_height);
124 render<double>(img_width, img_height);
H A Dmandelbrot.h31 template<typename Real> void render(int img_width, int img_height);
/external/opencv3/modules/imgproc/src/
H A Dlsd.cpp241 int img_width; member in class:cv::LineSegmentDetectorImpl
466 LOG_NT = 5 * (log10(double(img_width)) + log10(double(img_height))) / 2 + log10(11.0);
472 std::vector<RegionPoint> reg(img_width * img_height);
478 unsigned int adx = list[i].p.x + list[i].p.y * img_width;
548 img_width = scaled_image.cols;
553 angles.col(img_width - 1).setTo(NOTDEF);
563 for(int addr = y * img_width, addr_end = addr + img_width - 1; addr < addr_end; ++addr)
565 double DA = scaled_image_data[addr + img_width + 1] - scaled_image_data[addr];
566 double BC = scaled_image_data[addr + 1] - scaled_image_data[addr + img_width];
[all...]
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_blit.c258 static inline void calc_tex_coords(float img_width, float img_height, argument
263 buf[0] = x / img_width;
264 buf[1] = buf[0] + reg_width / img_width;
/external/opencv3/modules/features2d/src/
H A Dkaze.cpp121 options.img_width = img.cols;
H A Dakaze.cpp188 options.img_width = img.cols;
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dr200_blit.c383 static inline void calc_tex_coords(float img_width, float img_height, argument
388 buf[0] = x / img_width;
389 buf[1] = buf[0] + reg_width / img_width;
/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
H A Dimage_util_numpy_impl.py146 img_height, img_width = image.shape[:2]
148 (left + width) > img_width or
/external/opencv/ml/src/
H A Dmlcnn.cpp229 const int img_width = first_layer->input_width;
230 const int img_size = img_width*img_height;
242 CV_CALL(X[0] = cvCreateMat( img_height*img_width,1,CV_32FC1 ));
329 int img_height, img_width, img_size;
342 img_width = first_layer->input_width;
343 img_size = img_height*img_width;
/external/libvncserver/webclients/novnc/include/
H A Ddisplay.js150 var img_width = canvas.width < vp.w ? canvas.width : vp.w;
152 saveImg = this._drawCtx.getImageData(0, 0, img_width, img_height);
/external/pdfium/core/src/fxcodec/codec/
H A Dfx_codec_progress.cpp704 int32_t img_width = pCodec->m_GifFrameRect.Width(); local
707 for (int i = 0; i < img_width; i++) {
722 FXSYS_memcpy(pCodec->m_pDecodeBuf + left, row_buf, img_width);

Completed in 448 milliseconds