HomeSort by relevance Sort by last modified time
    Searched refs:img (Results 201 - 225 of 1190) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/e2fsprogs/misc/
e2image.c 824 static int init_refcount(struct ext2_qcow2_image *img, blk64_t table_offset)
830 ref = &(img->refcount);
839 img->cluster_bits);
840 table_clusters >>= (img->cluster_bits + 6 - 1);
850 img->cluster_size, &ref->refcount_table);
855 ret = ext2fs_get_arrayzero(1, img->cluster_size, &ref->refcount_block);
930 static void free_qcow2_image(struct ext2_qcow2_image *img)
932 if (!img)
935 if (img->hdr)
936 ext2fs_free_mem(&img->hdr)
1127 struct ext2_qcow2_image *img; local
    [all...]
  /cts/apps/CameraITS/tests/inprog/
test_param_edge_mode.py 43 img = its.image.convert_capture_to_rgb_image(cap)
44 its.image.write_image(img, "%s_mode=%d.jpg" % (NAME, e))
  /device/google/dragon/
releasetools.py 22 bootloader_img = info.input_zip.read("RADIO/bootloader.img")
28 common.ZipWriteStr(info.output_zip, "bootloader.img", bootloader_img)
33 """dragon.firmware_update(package_extract_file("bootloader.img"), package_extract_file("ec.bin"));""")
37 target_bootloader_img = info.target_zip.read("RADIO/bootloader.img")
46 common.ZipWriteStr(info.output_zip, "bootloader.img", target_bootloader_img)
51 """dragon.firmware_update(package_extract_file("bootloader.img"), package_extract_file("ec.bin"));""")
touchfwup.sh 10 /system/bin/rmi4update -d /dev/hidraw0 /vendor/firmware/synaptics.img >> ${LOG_FILE} 2>&1
  /external/chromium-trace/catapult/tracing/tracing/ui/extras/chrome/gpu/
state_view.css 12 .tr-ui-e-chrome-gpu-state-snapshot-view img {
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/
HTMLElement.java 352 * Creates a 'img' element.
365 public void img(final String srcattr, final int widthattr, method in class:HTMLElement
367 final HTMLElement img = element("img"); local
368 img.attr("src", srcattr);
369 img.attr("width", widthattr);
370 img.attr("height", heightattr);
371 img.attr("title", titleattr);
372 img.attr("alt", titleattr);
373 img.close()
    [all...]
  /external/libvpx/libvpx/vpx/
vp8.h 107 vpx_image_t img; /**< reference frame data in image format */ member in struct:vpx_ref_frame
116 vpx_image_t img; /**< img structure to populate (output) */ member in struct:vp9_ref_frame
  /external/mesa3d/src/mesa/main/
texgetimage.h 57 _mesa_GetCompressedTexImageARB(GLenum target, GLint lod, GLvoid *img);
61 GLvoid *img);
  /external/opencv/cv/src/
cvcalccontrasthistogram.cpp 45 IPCVAPI(CvStatus, icvCalcContrastHist8uC1R, ( uchar** img, int step, CvSize size,
48 IPCVAPI(CvStatus, icvCalcContrastHistMask8uC1R, ( uchar** img, int step,
62 icvCalcContrastHist8uC1R( uchar** img, int step, CvSize size,
68 if( !hist || !img )
79 if( !img[i] )
106 uchar *data0 = img[0];
175 icvCalcContrastHistMask8uC1R( uchar** img, int step, uchar* mask, int mask_step,
182 if( !hist || !img || !mask )
193 if( !img[i] )
220 uchar *data0 = img[0]
    [all...]
  /external/opencv3/modules/cudafeatures2d/src/cuda/
orb.cu 72 __global__ void HarrisResponses(const PtrStepb img, const short2* loc_, float* response, const int npoints, const int blockSize, const float harris_k)
95 int Ix = (img(y0 + i, x0 + j + 1) - img(y0 + i, x0 + j - 1)) * 2 +
96 (img(y0 + i - 1, x0 + j + 1) - img(y0 + i - 1, x0 + j - 1)) +
97 (img(y0 + i + 1, x0 + j + 1) - img(y0 + i + 1, x0 + j - 1));
99 int Iy = (img(y0 + i + 1, x0 + j) - img(y0 + i - 1, x0 + j)) * 2 +
100 (img(y0 + i + 1, x0 + j - 1) - img(y0 + i - 1, x0 + j - 1))
    [all...]
  /external/opencv3/modules/features2d/src/kaze/
KAZEFeatures.h 49 int Create_Nonlinear_Scale_Space(const cv::Mat& img);
55 void Compute_KContrast(const cv::Mat& img, const float& kper);
  /external/opencv3/modules/java/src/
imgcodecs+Imgcodecs.java 112 // C++: bool imwrite(String filename, Mat img, vector_int params = std::vector<int>())
115 //javadoc: imwrite(filename, img, params)
116 public static boolean imwrite(String filename, Mat img, MatOfInt params)
119 boolean retVal = imwrite_0(filename, img.nativeObj, params_mat.nativeObj);
124 //javadoc: imwrite(filename, img)
125 public static boolean imwrite(String filename, Mat img)
128 boolean retVal = imwrite_1(filename, img.nativeObj);
149 // C++: bool imencode(String ext, Mat img, vector_uchar& buf, vector_int params = std::vector<int>())
152 //javadoc: imencode(ext, img, buf, params)
153 public static boolean imencode(String ext, Mat img, MatOfByte buf, MatOfInt params
    [all...]
objdetect+HOGDescriptor.java 183 // C++: void compute(Mat img, vector_float& descriptors, Size winStride = Size(), Size padding = Size(), vector_Point locations = std::vector<Point>())
186 //javadoc: HOGDescriptor::compute(img, descriptors, winStride, padding, locations)
187 public void compute(Mat img, MatOfFloat descriptors, Size winStride, Size padding, MatOfPoint locations)
191 compute_0(nativeObj, img.nativeObj, descriptors_mat.nativeObj, winStride.width, winStride.height, padding.width, padding.height, locations_mat.nativeObj);
196 //javadoc: HOGDescriptor::compute(img, descriptors)
197 public void compute(Mat img, MatOfFloat descriptors)
200 compute_1(nativeObj, img.nativeObj, descriptors_mat.nativeObj);
207 // C++: void detect(Mat img, vector_Point& foundLocations, vector_double& weights, double hitThreshold = 0, Size winStride = Size(), Size padding = Size(), vector_Point searchLocations = std::vector<Point>())
210 //javadoc: HOGDescriptor::detect(img, foundLocations, weights, hitThreshold, winStride, padding, searchLocations)
211 public void detect(Mat img, MatOfPoint foundLocations, MatOfDouble weights, double hitThreshold, Size winStride, Size padding (…)
    [all...]
  /external/opencv3/samples/cpp/tutorial_code/ml/introduction_to_pca/
introduction_to_pca.cpp 20 void drawAxis(Mat& img, Point p, Point q, Scalar colour, const float scale = 0.2)
33 line(img, p, q, colour, 1, CV_AA);
38 line(img, p, q, colour, 1, CV_AA);
42 line(img, p, q, colour, 1, CV_AA);
49 double getOrientation(const vector<Point> &pts, Mat &img)
82 circle(img, cntr, 3, Scalar(255, 0, 255), 2);
85 drawAxis(img, cntr, p1, Scalar(0, 255, 0), 1);
86 drawAxis(img, cntr, p2, Scalar(255, 255, 0), 5);
  /external/opencv3/samples/python2/
opt_flow.py 16 def draw_flow(img, flow, step=16):
17 h, w = img.shape[:2]
22 vis = cv2.cvtColor(img, cv2.COLOR_GRAY2BGR)
40 def warp_flow(img, flow):
45 res = cv2.remap(img, flow, None, cv2.INTER_LINEAR)
64 ret, img = cam.read()
65 gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
85 cur_glitch = img.copy()
morphology.py 31 img = cv2.imread(fn) variable
33 if img is None:
37 cv2.imshow('original', img)
59 res = cv2.morphologyEx(img, getattr(cv2, oper_name), st, iterations=iters)
  /external/pdfium/core/src/fxcodec/codec/
fx_codec_jpx_unittest.cpp 491 opj_image_t img; local
492 memset(&img, 0, sizeof(img));
493 img.numcomps = 3;
494 img.color_space = OPJ_CLRSPC_SYCC;
495 img.comps = FX_Alloc(opj_image_comp_t, 3);
510 img.x1 = y.w;
511 img.y1 = y.h;
518 img.comps[0] = y;
519 img.comps[1] = u
    [all...]
  /external/skia/src/gpu/
GrImageIDTextureAdjuster.cpp 48 static bool tex_image_is_alpha_only(const SkImage_Base& img) {
49 return GrPixelConfigIsAlphaOnly(img.peekTexture()->config());
52 GrImageTextureAdjuster::GrImageTextureAdjuster(const SkImage_Base* img)
53 : INHERITED(img->peekTexture(), SkIRect::MakeWH(img->width(), img->height()),
54 tex_image_is_alpha_only(*img))
55 , fImageBase(img) {}
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/
vp8.h 107 vpx_image_t img; /**< reference frame data in image format */ member in struct:vpx_ref_frame
116 vpx_image_t img; /**< img structure to populate (output) */ member in struct:vp9_ref_frame
  /external/libjpeg-turbo/doc/html/
dynsections.js 31 var i = $('#img'+this.id.substring(3));
52 var currentRowImages = currentRow.find("img");
66 currentRowImages.filter("[id^=img]").attr('src', 'ftv2folderclosed.png');
70 var childImages = childRows.find("img");
71 var childImg = childImages.filter("[id^=img]");
75 currentRow.find("[id^=img]").attr('src', 'ftv2folderopen.png'); //open row
87 var img = $('tr.inherit_header.'+id+' img');
88 var src = $(img).attr('src');
91 $(img).attr('src',src.substring(0,src.length-8)+'closed.png')
    [all...]
  /external/libvpx/libvpx/
tools_common.c 223 int vpx_img_plane_width(const vpx_image_t *img, int plane) {
224 if (plane > 0 && img->x_chroma_shift > 0)
225 return (img->d_w + 1) >> img->x_chroma_shift;
227 return img->d_w;
230 int vpx_img_plane_height(const vpx_image_t *img, int plane) {
231 if (plane > 0 && img->y_chroma_shift > 0)
232 return (img->d_h + 1) >> img->y_chroma_shift;
234 return img->d_h
    [all...]
  /external/eigen/doc/special_examples/
Tutorial_sparse_example_details.cpp 40 QImage img(bits.data(), n,n,QImage::Format_Indexed8);
41 img.setColorCount(256);
42 for(int i=0;i<256;i++) img.setColor(i,qRgb(i,i,i));
43 img.save(filename);
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/
viddec_h264_parse.c 54 pInfo->img.g_new_frame = 0;
69 pInfo->got_start,pInfo->nal_unit_type, pInfo->wl_err_curr, pInfo->is_current_workload_done, 0, pInfo->img.frame_num);
77 pInfo->img.recovery_point_found |= 1;
93 //pInfo->img.recovery_point_found = 1;
105 pInfo->img.recovery_point_found |=4;
111 if(pInfo->img.recovery_point_found == 0) {
112 pInfo->img.structure = FRAME;
147 pInfo->img.current_slice_num++;
167 pInfo->img.g_new_pic++;
181 h264_update_img_info(pInfo); //img, dp
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
tools_common.h 142 int vpx_img_plane_width(const vpx_image_t *img, int plane);
143 int vpx_img_plane_height(const vpx_image_t *img, int plane);
144 void vpx_img_write(const vpx_image_t *img, FILE *file);
145 int vpx_img_read(vpx_image_t *img, FILE *file);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiModelTreeLabelProvider.java 56 Image img = desc.getCustomizedIcon(); local
57 if (img != null) {
59 return IconFactory.getInstance().addErrorIcon(img);
61 return img;

Completed in 4193 milliseconds

1 2 3 4 5 6 7 891011>>