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

<<71727374757677787980>>

  /external/opencv3/cmake/checks/
directx.cpp 18 UINT height = 480; local
42 sd.BufferDesc.Height = height;
  /external/opencv3/modules/cudacodec/src/
video_decoder.cpp 83 createInfo_.ulHeight = videoFormat.height;
87 while (createInfo_.ulNumDecodeSurfaces * videoFormat.width * videoFormat.height > 16 * 1024 * 1024)
  /external/opencv3/modules/imgproc/src/
utils.cpp 65 if( (mat->width != 1 && mat->height != 1) || !CV_IS_MAT_CONT(mat->type))
73 mat->width*mat->height, (CvSeq*)contour_header, block );
  /external/opencv3/modules/java/generator/src/java/
android+FpsMeter.java 56 public void setResolution(int width, int height) {
58 mHeight = height;
  /external/opencv3/modules/objdetect/perf/opencl/
perf_hogdetect.cpp 69 return a.height < b.height;
  /external/opencv3/samples/cpp/
facial_features.cpp 142 rectangle(img, Point(face.x, face.y), Point(face.x+face.width, face.y+face.height),
146 Mat ROI = img(Rect(face.x, face.y, face.width, face.height));
163 circle(ROI, Point(e.x+e.width/2, e.y+e.height/2), 3, Scalar(0, 255, 0), -1, 8);
164 /* rectangle(ROI, Point(e.x, e.y), Point(e.x+e.width, e.y+e.height),
180 circle(ROI, Point(n.x+n.width/2, n.y+n.height/2), 3, Scalar(0, 255, 0), -1, 8);
181 nose_center_height = (n.y + n.height/2);
195 mouth_center_height = (m.y + m.height/2);
200 rectangle(ROI, Point(m.x, m.y), Point(m.x+m.width, m.y+m.height), Scalar(0, 255, 0), 1, 4);
205 rectangle(ROI, Point(m.x, m.y), Point(m.x+m.width, m.y+m.height), Scalar(0, 255, 0), 1, 4);
fitellipse.cpp 82 if( MAX(box.size.width, box.size.height) > MIN(box.size.width, box.size.height)*30 )
  /external/opencv3/samples/wp8/OpenCVXaml/OpenCVComponent/
OpenCVComponent.cpp 24 IAsyncOperation<IVectorView<int>^>^ OpenCVLib::ProcessAsync(IVector<int>^ input, int width, int height)
27 cv::Mat mat(width, height, CV_8UC4);
  /external/pdfium/xfa/src/fxbarcode/common/
BC_CommonBitMatrix.h 21 int32_t height,
32 virtual void Init(int32_t width, int32_t height);
BC_CommonByteMatrix.cpp 25 CBC_CommonByteMatrix::CBC_CommonByteMatrix(int32_t width, int32_t height) {
26 m_height = height;
  /external/skia/bench/
PerlinNoiseBench.cpp 33 SkIntToScalar(fSize.width()), SkIntToScalar(fSize.height())));
36 SkIntToScalar(fSize.height()));
WritePixelsBench.cpp 54 bmp.allocN32Pixels(size.width(), size.height());
57 SkImageInfo info = SkImageInfo::Make(bmp.width(), bmp.height(), fColorType, fAlphaType);
  /external/skia/experimental/DrawingBoard/
SkColorPalette.cpp 53 canvas->translate(0, fSlotRect.height() + PalettePadding);
99 curr.fY -= 2 * PalettePadding + (fSlotRect.height() + PalettePadding) * PaletteSlots;
101 curr.fY < 0 || curr.fY > fGradientRect.height()) {
132 cursorPosition.fY < 0 || cursorPosition.fY > (fSlotRect.height() + PalettePadding) * PaletteSlots) {
135 int index = cursorPosition.fY/(fSlotRect.height() + PalettePadding);
136 int offset = (int)cursorPosition.fY%((int)fSlotRect.height() + PalettePadding);
137 if (offset <= fSlotRect.height()) {
147 float s = 1.0 - cursorPosition.fY/fGradientRect.height();
  /external/skia/gm/
blurrect.cpp 143 canvas->translate(0, SK_ARRAY_COUNT(procs) * r.height() * 4/3 * scales[s]);
165 canvas->translate(0, r.height() * 4/3);
191 int height = heights[i]; local
193 r.setWH(SkIntToScalar(width), SkIntToScalar(height));
220 canvas->translate(-(bm.width() - r.width())/2, -(bm.height()-r.height())/2);
225 if (bm.height() > max_height)
226 max_height = bm.height();
mipmap.cpp 39 str.printf("scale %g %g", dst.width() / img->width(), dst.height() / img->height());
rectangletexture.cpp 37 void fillPixels(int width, int height, void *pixels) {
39 bmp.setInfo(SkImageInfo::MakeN32(width, height, kOpaque_SkAlphaType), width * 4);
43 SkPoint pts[] = { {0, 0}, {0, SkIntToScalar(height)} };
53 canvas.drawCircle(SkIntToScalar(width) / 2, SkIntToScalar(height) / 2,
54 SkIntToScalar(width + height) / 5, paint);
57 SkImage* createRectangleTextureImg(GrContext* context, int width, int height, void* pixels) {
100 GR_GL_CALL(gl, TexImage2D(TARGET, 0, GR_GL_RGBA, width, height, 0,
111 desc.fHeight = height;
repeated_bitmap.cpp 23 128.0f / image->height());
24 SkScalar point[2] = {-0.5f * image->width(), -0.5f * image->height()};
textblobblockreordering.cpp 34 SkScalar yOffset = bounds.height();
59 const int yDelta = SkScalarFloorToInt(bounds.height()) + 20;
texturedomaineffect.cpp 56 fBmp.width() + 10.f, fBmp.height() + 10.f), paint);
63 fBmp.width() + 10.f, fBmp.height() + 10.f), paint);
70 fBmp.width() + 10.f, fBmp.height() + 10.f), paint);
96 textureMatrices.push_back().setIDiv(texture->width(), texture->height());
100 textureMatrices.back().preRotate(45.f, texture->width() / 2.f, texture->height() / 2.f);
105 fBmp.height() / 4,
107 fBmp.height() / 2),
141 y += renderRect.height() + kTestPad;
  /external/skia/include/core/
SkDocument.h 103 SkCanvas* beginPage(SkScalar width, SkScalar height,
163 virtual SkCanvas* onBeginPage(SkScalar width, SkScalar height,
SkPictureRecorder.h 54 SkCanvas* beginRecording(SkScalar width, SkScalar height,
57 return this->beginRecording(SkRect::MakeWH(width, height), bbhFactory, recordFlags);
SkPixmap.h 67 int height() const { return fInfo.height(); } function in class:SkPixmap
72 SkIRect bounds() const { return SkIRect::MakeWH(this->width(), this->height()); }
74 uint64_t getSize64() const { return sk_64_mul(fInfo.height(), fRowBytes); }
107 SkASSERT((unsigned)y < (unsigned)fInfo.height());
112 SkASSERT((unsigned)y < (unsigned)fInfo.height());
117 SkASSERT((unsigned)y < (unsigned)fInfo.height());
122 SkASSERT((unsigned)y < (unsigned)fInfo.height());
SkRSXform.h 60 void toQuad(SkScalar width, SkScalar height, SkPoint quad[4]) const;
62 this->toQuad(size.width(), size.height(), quad);
  /external/skia/samplecode/
SampleStringArt.cpp 35 SkPoint center = SkPoint::Make(SkScalarHalf(this->width()), SkScalarHalf(this->height()));
42 while (length < (SkScalarHalf(SkMinScalar(this->width(), this->height())) - 10.f))
  /external/skia/src/core/
SkBitmapCache.h 28 static SkBitmapCacheDesc Make(const SkBitmap&, int width, int height);
30 static SkBitmapCacheDesc Make(const SkImage*, int width, int height);
63 * The width and the height of the provided subset must be the same as the result bitmap ones.

Completed in 1118 milliseconds

<<71727374757677787980>>