HomeSort by relevance Sort by last modified time
    Searched refs:height (Results 876 - 900 of 9458) sorted by null

<<31323334353637383940>>

  /external/opencv/cvaux/src/
cvhmmobs.cpp 51 // roi - width and height of ROI in pixels
56 // obsSize.width * obsSize.height floats.
59 // 0 < objSize.height <= dctSize.height.
69 // Ny = floor((roi.height - dctSize.height + delta.height)/delta.height);
72 // array obs must be >= Nx*Ny*obsSize.width*obsSize.height*sizeof(float).
79 // (x*delta.width,y*delta.height) in the source imag
    [all...]
  /external/opencv/otherlibs/highgui/
cvcap.cpp 90 CV_IMPL CvCapture* cvCreateSocketCapture( const char *address, const char* port, int width, int height )
92 return cvCreateCameraCapture_Socket(address, port, width, height);
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfPreviewImage.h 87 unsigned int height = 0,
101 // Access to width, height and to the pixel array
105 unsigned int height () const {return _height;} function in class:Imf::PreviewImage
  /external/opencv3/apps/createsamples/
createsamples.cpp 78 int height = 24; local
97 maxxangle, maxyangle, maxzangle, scale, width, height );
173 height = atoi( argv[++i] );
196 printf( "Height: %d\n", height );
206 showsamples, width, height );
216 maxxangle, maxyangle, maxzangle, showsamples, width, height );
227 width, height );
235 cvShowVecSamples( vecname, width, height, scale );
  /external/opencv3/modules/core/misc/java/src/java/
core+RotatedRect.java 32 size.height = vals.length > 3 ? (double) vals[3] : 0;
38 size.height = 0;
50 center.x - a * size.height - b * size.width,
51 center.y + b * size.height - a * size.width);
54 center.x + a * size.height - b * size.width,
55 center.y - b * size.height - a * size.width);
75 r.height -= r.y - 1;
94 temp = Double.doubleToLongBits(size.height);
  /external/proguard/src/proguard/gui/splash/
ImageSprite.java 72 int height = (int)(image.getHeight(null) * scale_y); local
74 graphics.drawImage(image, xt, yt, width, height, null);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowFrameLayout.java 27 int height = MeasureSpec.getSize(heightMeasureSpec); local
29 layout(right, top, right + width, top + height);
  /external/skia/bench/
ReadPixBench.cpp 33 int offY = (size.height() - kWindowSize) / kNumStepsY;
40 SkIntToScalar(size.height()/2),
RecordingBench.cpp 28 SkScalarCeilToInt(fSrc->cullRect().height()));
34 h = fSrc->cullRect().height();
  /external/skia/experimental/SkV8Example/js/
path.js 19 print(context.width, context.height);
21 context.fillRect(context.width/2, context.height/2, 20, 20);
  /external/skia/gm/
colormatrix.cpp 14 #define HEIGHT 500
36 return SkISize::Make(WIDTH, HEIGHT);
44 static SkImage* CreateSolidBitmap(int width, int height) {
46 bm.allocN32Pixels(width, height);
49 for (int y = 0; y < height; ++y) {
52 paint.setColor(SkColorSetARGB(255, x * 255 / width, y * 255 / height, 0));
61 static SkImage* CreateTransparentBitmap(int width, int height) {
63 bm.allocN32Pixels(width, height);
67 SkPoint pts[] = {{0, 0}, {SkIntToScalar(width), SkIntToScalar(height)}};
72 canvas.drawRect(SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height)), paint)
    [all...]
  /external/skia/samplecode/
SampleBigGradient.cpp 36 r.set(0, 0, this->width(), this->height());
38 p.setShader(make_grad(this->width(), this->height()))->unref();
  /external/skia/src/animator/
SkDrawBitmap.cpp 50 SK_MEMBER(height, Int),
59 SkDrawBitmap::SkDrawBitmap() : format((SkColorType) -1), height(-1),
89 SkASSERT(height != -1);
92 fBitmap.allocPixels(SkImageInfo::Make(width, height, colorType, kPremul_SkAlphaType),
115 SK_PROPERTY(height),
124 SK_MEMBER_PROPERTY(height, Int),
162 case SK_PROPERTY(height):
163 value->fOperand.fS32 = fBitmap.height();
  /external/skia/src/core/
SkBlitter.cpp 50 void SkBlitter::blitV(int x, int y, int height, SkAlpha alpha) {
52 this->blitRect(x, y, 1, height);
58 while (--height >= 0) {
64 void SkBlitter::blitRect(int x, int y, int width, int height) {
66 while (--height >= 0) {
74 void SkBlitter::blitAntiRect(int x, int y, int width, int height,
76 this->blitV(x++, y, height, leftAlpha);
78 this->blitRect(x, y, width, height);
81 this->blitV(x, y, height, rightAlpha);
139 int height = clip.height() local
198 int height = clip.height(); local
    [all...]
  /external/skia/src/gpu/
GrImageIDTextureAdjuster.cpp 22 SkIRect::MakeWH(bmp->width(), bmp->height()),
36 SkIRect::MakeWH(fBmp->width(), fBmp->height()));
53 : INHERITED(img->peekTexture(), SkIRect::MakeWH(img->width(), img->height()),
59 // image's width and height for the key's rectangle.
62 SkIRect::MakeWH(fImageBase->width(), fImageBase->height()));
73 : INHERITED(context, bitmap.width(), bitmap.height(), bmp_is_alpha_only(bitmap))
79 bitmap.height());
118 : INHERITED(context, cacher->info().width(), cacher->info().height(),
125 SkIRect::MakeWH(this->width(), this->height()));
GrSurfacePriv.h 26 int* left, int* top, int* width, int* height,
32 int* left, int* top, int* width, int* height,
  /external/skia/src/gpu/gl/
GrGLStencilAttachment.h 34 int width, int height,
37 : GrStencilAttachment(gpu, idDesc.fLifeCycle, width, height, format.fStencilBits, sampleCnt)
  /external/toybox/kconfig/lxdialog/
dialog.h 193 void attr_clear(WINDOW * win, int height, int width, chtype attr);
198 void draw_box(WINDOW * win, int y, int x, int height, int width, chtype box,
200 void draw_shadow(WINDOW * win, int y, int x, int height, int width);
203 int dialog_yesno(const char *title, const char *prompt, int height, int width);
204 int dialog_msgbox(const char *title, const char *prompt, int height,
206 int dialog_textbox(const char *title, const char *file, int height, int width);
209 int dialog_checklist(const char *title, const char *prompt, int height,
212 int dialog_inputbox(const char *title, const char *prompt, int height,
  /external/universal-tween-engine/java/applets/src/aurelienribon/utils/swing/
ImagePanel.java 24 private int x, y, width, height; field in class:ImagePanel
53 public void setImage(File img, int x, int y, int width, int height) {
57 this.height = height;
68 public void setImage(URL imgUrl, int x, int y, int width, int height) {
72 this.height = height;
112 float imgRatio = (float)width / (float)height;
  /external/webrtc/talk/app/webrtc/java/android/org/webrtc/
GlRectDrawer.java 139 public void drawOes(int oesTextureId, float[] texMatrix, int x, int y, int width, int height) {
145 drawRectangle(x, y, width, height);
154 public void drawRgb(int textureId, float[] texMatrix, int x, int y, int width, int height) {
158 drawRectangle(x, y, width, height);
168 public void drawYuv(int[] yuvTextures, float[] texMatrix, int x, int y, int width, int height) {
175 drawRectangle(x, y, width, height);
183 private void drawRectangle(int x, int y, int width, int height) {
185 GLES20.glViewport(x, y, width, height);
  /external/webrtc/talk/app/webrtc/java/jni/
native_handle_impl.cc 100 int height,
104 : webrtc::NativeHandleBuffer(&native_handle_, width, height),
117 int uv_height = (height()+1)/2;
118 size_t size = stride * (height() + uv_height);
128 uint8_t* u_data = y_data + height() * stride;
133 width(), height(),
157 byte_buffer, width(), height(), stride,
168 if (width() == dst_widht && height() == dst_height &&
  /external/webrtc/talk/app/webrtc/
remotevideocapturer.cc 84 best_format->height = desired.height;
  /external/webrtc/talk/app/webrtc/test/
fakevideotrackrenderer.h 59 int height() const { return fake_renderer_.height(); } function in class:webrtc::FakeVideoTrackRenderer
  /external/webrtc/talk/media/base/
fakevideocapturer.h 83 GetCaptureFormat()->height,
87 bool CaptureCustomFrame(int width, int height, uint32_t fourcc) {
89 return CaptureCustomFrame(width, height, 33333333, fourcc);
92 int height,
102 size = width * 4 * height;
104 size = static_cast<uint32_t>(cricket::VideoFrame::SizeOf(width, height));
109 return false; // Width and/or Height were zero.
114 frame.height = height;
  /external/webrtc/talk/media/devices/
carbonvideorenderer.cc 76 int height = image_height_; local
78 CGDataProviderCreateWithData(NULL, image_.get(), width * height * 4,
83 CGImageRef image_ref = CGImageCreate(width, height, 8, 32, width * 4,
112 bool CarbonVideoRenderer::SetSize(int width, int height, int reserved) {
113 if (width != image_width_ || height != image_height_) {
117 image_height_ = height;
118 image_.reset(new uint8_t[width * height * 4]);
119 memset(image_.get(), 255, width * height * 4);

Completed in 1479 milliseconds

<<31323334353637383940>>