HomeSort by relevance Sort by last modified time
    Searched refs:img (Results 26 - 50 of 633) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/opencv/cxcore/src/
cximage.cpp 77 IplImage* img = 0; local
84 img = (IplImage*)obj;
88 CV_CALL( img = cvCreateImageHeader( cvSize(m->cols,m->rows),
90 cvSetData( img, m->data.ptr, m->step );
91 img->imageDataOrigin = (char*)m->refcount;
103 return img;
109 IplImage* img = 0; local
117 img = icvRetrieveImage(cvLoad(filename,0,imgname));
118 if( (img->nChannels > 1) != (color == 0) )
123 CV_CALL( temp_img = cvCreateImage( cvGetSize(img), img->depth, color > 0 ? 3 : 1 ))
150 IplImage* img = 0; local
170 IplImage* img = 0; local
240 IplImage* img = (IplImage*)obj; local
    [all...]
  /external/genext2fs/
test-gen.lib 23 ./genext2fs -N 17 -b $blocks -d test -f -q ext2.img
34 ./genext2fs -N 92 -b $blocks -D test/$fname -f ext2.img
40 rm -rf ext2.img test
46 digest=`md5sum ext2.img 2>/dev/null | cut -f 1 -d " "`
50 digest=`md5 ext2.img 2>/dev/null | cut -f 4 -d " "`
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
y4m_test.cc 55 static void write_image_file(const vpx_image_t *img, FILE *file) {
58 const unsigned char *buf = img->planes[plane];
59 const int stride = img->stride[plane];
60 const int bytes_per_sample = (img->fmt & VPX_IMG_FMT_HIGHBITDEPTH) ? 2 : 1;
61 const int h = (plane ? (img->d_h + img->y_chroma_shift) >>
62 img->y_chroma_shift : img->d_h);
63 const int w = (plane ? (img->d_w + img->x_chroma_shift) >
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/
tools_common.c 207 int vpx_img_plane_width(const vpx_image_t *img, int plane) {
208 if (plane > 0 && img->x_chroma_shift > 0)
209 return (img->d_w + 1) >> img->x_chroma_shift;
211 return img->d_w;
214 int vpx_img_plane_height(const vpx_image_t *img, int plane) {
215 if (plane > 0 && img->y_chroma_shift > 0)
216 return (img->d_h + 1) >> img->y_chroma_shift;
218 return img->d_h
    [all...]
  /cts/apps/CameraITS/tests/scene1/
test_yuv_jpeg_all.py 49 img = its.image.convert_capture_to_rgb_image(cap)
50 its.image.write_image(img, "%s_yuv_w%d_h%d.jpg"%(
52 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
62 img = its.image.decompress_jpeg_to_rgb_image(cap["data"])
63 its.image.write_image(img, "%s_jpg_w%d_h%d.jpg"%(
65 assert(img.shape[0] == size[1])
66 assert(img.shape[1] == size[0])
67 assert(img.shape[2] == 3)
69 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
test_crop_region_raw.py 87 img = its.image.convert_capture_to_rgb_image(cap, props=props)
88 its.image.write_image(img, "%s_%s.jpg" % (NAME, s))
89 imgs[s] = img
115 for s,img in imgs.iteritems():
116 h,w,ch = img.shape
118 img = img.reshape(h/2,2,w/2,2,3).mean(3).mean(1)
119 img = img.reshape(h/2,w/2,3)
120 imgs2[s] = img
    [all...]
test_jpeg.py 42 img = its.image.convert_capture_to_rgb_image(cap)
43 its.image.write_image(img, "%s_fmt=yuv.jpg" % (NAME))
44 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
51 img = its.image.decompress_jpeg_to_rgb_image(cap["data"])
52 its.image.write_image(img, "%s_fmt=jpg.jpg" % (NAME))
53 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
test_tonemap_sequence.py 46 img = its.image.convert_capture_to_rgb_image(cap)
47 its.image.write_image(img, "%s_i=%d.jpg" % (NAME, i))
48 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
55 img = its.image.convert_capture_to_rgb_image(cap)
56 its.image.write_image(img, "%s_i=%d.jpg" % (NAME, i))
57 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
test_yuv_plus_raw.py 43 img = its.image.convert_capture_to_rgb_image(cap_yuv)
44 its.image.write_image(img, "%s_yuv.jpg" % (NAME), True)
45 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
50 img = its.image.convert_capture_to_rgb_image(cap_raw, props=props)
51 its.image.write_image(img, "%s_raw.jpg" % (NAME), True)
52 tile = its.image.get_image_patch(img, 0.475, 0.475, 0.05, 0.05)
test_yuv_plus_raw10.py 44 img = its.image.convert_capture_to_rgb_image(cap_yuv)
45 its.image.write_image(img, "%s_yuv.jpg" % (NAME), True)
46 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
51 img = its.image.convert_capture_to_rgb_image(cap_raw, props=props)
52 its.image.write_image(img, "%s_raw.jpg" % (NAME), True)
53 tile = its.image.get_image_patch(img, 0.475, 0.475, 0.05, 0.05)
  /development/perftests/panorama/feature_mos/src/mosaic/
Interp.h 46 inline double ciCalc(PyramidShort *img, int xi, int yi, double xfrac, double yfrac)
51 ImageTypeShortBase *in = img->ptr[yi-1] + xi - 1;
58 in += img->pitch;
63 in += img->pitch;
68 in += img->pitch;
  /external/chromium_org/chrome/browser/resources/
supervised_user_block_interstitial.js 26 $('avatar-img').style.content = makeImageSet(avatarURL1x, avatarURL2x);
27 $('avatar-img').hidden = false;
28 $('error-img').hidden = true;
32 $('second-avatar-img').style.content =
34 $('second-avatar-img').hidden = false;
36 $('avatar-img').style.left = '10px';
37 $('avatar-img').style.zIndex = '1';
38 $('second-avatar-img').style.left = '-10px';
50 $('error-img').hidden = true;
54 if ($('avatar-img').hidden)
    [all...]
  /external/libvpx/libvpx/
tools_common.c 206 int vpx_img_plane_width(const vpx_image_t *img, int plane) {
207 if (plane > 0 && img->x_chroma_shift > 0)
208 return (img->d_w + 1) >> img->x_chroma_shift;
210 return img->d_w;
213 int vpx_img_plane_height(const vpx_image_t *img, int plane) {
214 if (plane > 0 && img->y_chroma_shift > 0)
215 return (img->d_h + 1) >> img->y_chroma_shift;
217 return img->d_h
    [all...]
  /external/chromium_org/extensions/renderer/resources/
image_util.js 11 var img = new Image();
13 img.onerror = function() {
17 img.onload = function() {
20 if (img.width <= 0 || img.height <= 0) {
26 if (imageSpec.width && imageSpec.width < img.width)
27 scaleFactor = imageSpec.width / img.width;
29 if (imageSpec.height && imageSpec.height < img.height) {
30 var heightScale = imageSpec.height / img.height;
35 canvas.width = img.width * scaleFactor
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/dri/drm/
dri2.c 421 __DRIimage *img; local
426 img = loader->lookupEGLImage(screen->sPriv,
429 return img;
438 __DRIimage *img; local
466 img = CALLOC_STRUCT(__DRIimageRec);
467 if (!img)
484 img->texture = screen->base.screen->resource_from_handle(screen->base.screen,
486 if (!img->texture) {
487 FREE(img);
491 img->level = 0
518 __DRIimage *img; local
629 __DRIimage *img; local
665 __DRIimage *img; local
713 __DRIimage *img; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/dri/drm/
dri2.c 421 __DRIimage *img; local
426 img = loader->lookupEGLImage(screen->sPriv,
429 return img;
438 __DRIimage *img; local
466 img = CALLOC_STRUCT(__DRIimageRec);
467 if (!img)
484 img->texture = screen->base.screen->resource_from_handle(screen->base.screen,
486 if (!img->texture) {
487 FREE(img);
491 img->level = 0
518 __DRIimage *img; local
629 __DRIimage *img; local
665 __DRIimage *img; local
713 __DRIimage *img; local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
mouse_cursor_monitor_x11.cc 185 XFixesCursorImage* img = XFixesGetCursorImage(display()); local
186 if (!img)
190 new BasicDesktopFrame(DesktopSize(img->width, img->height)));
193 unsigned long* src = img->pixels;
195 uint32_t* dst_end = dst + (img->width * img->height);
200 DesktopVector hotspot(std::min(img->width, img->xhot),
201 std::min(img->height, img->yhot))
    [all...]
  /external/libvpx/libvpx/test/
decode_test_driver.cc 41 const vpx_image_t *img = NULL; local
44 while ((img = dec_iter.Next()))
45 DecompressedFrameHook(*img, video->frame_number());
  /cts/apps/CameraITS/tests/inprog/
test_test_patterns.py 36 img = its.image.convert_capture_to_rgb_image(caps[1])
37 its.image.write_image(img, "%s_pattern=%d.jpg" % (NAME, i))
  /development/build/
sdk-android-arm64-v8a.atree 20 ${HOST_OUT}/development/sys-img-${TARGET_CPU_ABI}/images_arm64-v8a_source.properties system-images/${PLATFORM_NAME}/${TARGET_CPU_ABI}/source.properties
sdk-android-armeabi.atree 20 ${HOST_OUT}/development/sys-img-${TARGET_CPU_ABI}/images_armeabi_source.properties system-images/${PLATFORM_NAME}/${TARGET_CPU_ABI}/source.properties
sdk-android-mips.atree 21 development/sys-img-${TARGET_CPU_ABI}/images_mips_source.properties system-images/${PLATFORM_NAME}/${TARGET_CPU_ABI}/source.properties
sdk-android-x86.atree 20 ${HOST_OUT}/development/sys-img-${TARGET_CPU_ABI}/images_${TARGET_ARCH}_source.properties system-images/${PLATFORM_NAME}/${TARGET_CPU_ABI}/source.properties
sdk-android-x86_64.atree 20 ${HOST_OUT}/development/sys-img-${TARGET_CPU_ABI}/images_${TARGET_ARCH}_source.properties system-images/${PLATFORM_NAME}/${TARGET_CPU_ABI}/source.properties
  /device/asus/grouper/factory-images/
generate-factory-images-package.sh 57 BOOTLOADERFILE=bootloader.img

Completed in 518 milliseconds

12 3 4 5 6 7 8 91011>>