HomeSort by relevance Sort by last modified time
    Searched defs:img_width (Results 1 - 7 of 7) sorted by null

  /external/opencv3/modules/features2d/src/kaze/
KAZEConfig.h 27 , img_width(0)
43 int img_width; member in struct:cv::KAZEOptions
AKAZEConfig.h 20 , img_width(0)
43 int img_width; ///< Width of the input image member in struct:cv::AKAZEOptions
  /external/opencv3/samples/python2/
kalman.py 21 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/
mandelbrot.cpp 31 template<typename Real> void MandelbrotThread::render(int img_width, int img_height)
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);
  /external/pdfium/core/src/fxcodec/codec/
fx_codec_progress.cpp 704 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);
    [all...]
  /frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/
VrView.java 393 int img_width = getWidth() / sample; local
395 state.createOutputAllocation(mSurface, img_width, img_height);
424 addLine("vr(" + img_width + "," + img_height + "): " + (time - start) / 1E6f + " ms");
  /external/opencv3/modules/imgproc/src/
lsd.cpp 241 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...]

Completed in 389 milliseconds