/external/opencv3/modules/features2d/src/kaze/ |
KAZEConfig.h | 28 , img_height(0) 44 int img_height; member in struct:cv::KAZEOptions
|
AKAZEConfig.h | 21 , img_height(0) 44 int img_height; ///< Height of the input image member in struct:cv::AKAZEOptions
|
KAZEFeatures.cpp | 61 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); 165 for (int ix = 0; ix < options_.img_height; ix++) 251 for (int ix = 1; ix < options_.img_height - 1; ix++ [all...] |
AKAZEFeatures.cpp | 53 level_height = (int)(options_.img_height*rfactor); [all...] |
/external/mesa3d/src/mesa/drivers/dri/intel/ |
intel_tex_layout.c | 180 GLuint img_height; local 185 img_height = ALIGN(height, mt->align_h); 187 img_height /= mt->align_h; 192 mt->total_height = MAX2(mt->total_height, y + img_height); 200 y += img_height;
|
/external/eigen/demos/mandelbrot/ |
mandelbrot.cpp | 31 template<typename Real> void MandelbrotThread::render(int img_width, int img_height) 41 const double yradius = xradius * img_height / img_width; 45 Vector2 step(2*widget->xradius/img_width, 2*yradius/img_height); 48 for(int y = id; y < img_height; y += threadcount) 118 int img_height = widget->height()/widget->draft; local 122 render<float>(img_width, img_height); 124 render<double>(img_width, img_height);
|
mandelbrot.h | 31 template<typename Real> void render(int img_width, int img_height);
|
/external/opencv3/samples/python2/ |
kalman.py | 20 img_height = 500 variable 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/mesa3d/src/mesa/drivers/dri/i915/ |
i915_tex_layout.c | 204 GLuint img_height; local 216 img_height = ALIGN(height, 4) / 4; 218 img_height = ALIGN(height, 2); 220 mt->total_height += img_height;
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_blit.c | 258 static inline void calc_tex_coords(float img_width, float img_height, 265 buf[2] = y / img_height; 266 buf[3] = buf[2] + reg_height / img_height;
|
/packages/apps/Camera2/jni/ |
jpegutil.cpp | 140 int jpegutil::Compress(int img_width, int img_height, 241 cinfo.image_height = img_height; 272 for (int y = 0; y < img_height; y += DCTSIZE * 2) {
|
jpegutil.h | 144 int Compress(int img_width, int img_height, RowIterator<16>& y_row_generator,
|
/external/opencv3/modules/features2d/src/ |
kaze.cpp | 122 options.img_height = img.rows;
|
akaze.cpp | 189 options.img_height = img.rows;
|
/external/opencv3/modules/imgproc/src/ |
lsd.cpp | 242 int img_height; 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); 549 img_height = scaled_image.rows; 552 angles.row(img_height - 1).setTo(NOTDEF); 561 for(int y = 0; y < img_height - 1; ++y) 587 list = std::vector<coorlist>(img_width * img_height); 593 for(int y = 0; y < img_height - 1; ++y) 657 int yy_min = std::max(rpoint.y - 1, 0), yy_max = std::min(rpoint.y + 1, img_height - 1); [all...] |
/external/mesa3d/src/mesa/drivers/dri/r200/ |
r200_blit.c | 383 static inline void calc_tex_coords(float img_width, float img_height, 390 buf[2] = y / img_height; 391 buf[3] = buf[2] + reg_height / img_height;
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/ |
image_util_numpy_impl.py | 146 img_height, img_width = image.shape[:2] 149 (top + height) > img_height):
|
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/ |
VrView.java | 394 int img_height = getHeight() / sample; local 395 state.createOutputAllocation(mSurface, img_width, img_height); 424 addLine("vr(" + img_width + "," + img_height + "): " + (time - start) / 1E6f + " ms");
|
/external/opencv/ml/src/ |
mlcnn.cpp | 228 const int img_height = first_layer->input_height; 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; 341 img_height = first_layer->input_height; 343 img_size = img_height*img_width; [all...] |
/external/libvncserver/webclients/novnc/include/ |
display.js | 151 var img_height = canvas.height < vp.h ? canvas.height : vp.h; 152 saveImg = this._drawCtx.getImageData(0, 0, img_width, img_height);
|