HomeSort by relevance Sort by last modified time
    Searched refs:image (Results 1 - 25 of 2677) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/vboot_reference/scripts/image_signing/
remove_test_label.sh 7 # Remove the test label from lsb-release to prepare an image for
14 image=$1
17 mount_image_partition ${image} 3 ${rootfs}
set_channel.sh 7 # Changes the channel on a Chrome OS image.
16 Usage: $PROG <image.bin> <channel>
18 <image.bin>: Path to image.
19 <channel>: The new channel of the image.
25 local image=$1
31 mount_image_partition "${image}" 3 "${rootfs}"
32 # Get the current channel on the image.
ensure_not_ASAN.sh 14 echo "Usage $PROG image"
23 local image="$1"
26 mount_image_partition_ro "$image" 3 "$rootfs"
ensure_update_verification.sh 16 echo "Usage: $PROG image"
25 local image=$1
28 mount_image_partition_ro "$image" 3 "$rootfs"
  /external/opencv3/samples/cpp/example_cmake/
example.cpp 10 void drawText(Mat & image);
15 Mat image; local
23 capture >> image; local
24 if(image.empty())
26 drawText(image);
27 imshow("Sample", image);
35 image = Mat::zeros(480, 640, CV_8UC1);
36 drawText(image);
37 imshow("Sample", image);
43 void drawText(Mat & image)
    [all...]
  /external/libpng/contrib/examples/
pngtopng.c 32 png_image image; local
34 /* Only the image structure version number needs to be set. */
35 memset(&image, 0, sizeof image);
36 image.version = PNG_IMAGE_VERSION;
38 if (png_image_begin_read_from_file(&image, argv[1]))
45 image.format = PNG_FORMAT_RGBA;
47 buffer = malloc(PNG_IMAGE_SIZE(image));
51 if (png_image_finish_read(&image, NULL/*background*/, buffer,
54 if (png_image_write_to_file(&image, argv[2]
    [all...]
  /external/skia/gm/
grayscalejpg.cpp 18 SkAutoTUnref<SkImage> image(GetResourceAsImage(kResource));
19 if (image) {
20 canvas->drawImage(image, 0.0f, 0.0f);
repeated_bitmap.cpp 13 static void draw_rotated_image(SkCanvas* canvas, const SkImage* image) {
16 if (!image) {
22 SkScalar scale = SkTMin(128.0f / image->width(),
23 128.0f / image->height());
24 SkScalar point[2] = {-0.5f * image->width(), -0.5f * image->height()};
32 canvas->drawImage(image, point[0], point[1]);
38 SkAutoTUnref<SkImage> image(GetResourceAsImage("randPixels.png"));
39 draw_rotated_image(canvas, image);
43 SkAutoTUnref<SkImage> image(GetResourceAsImage("color_wheel.jpg"))
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_deblocking.h 52 image_t *image,
  /external/opencv3/3rdparty/libjasper/jasper/
jas_image.h 2 * Copyright (c) 1999-2000 Image Power, Inc. and the University of
13 * Copyright (c) 1999-2000 Image Power, Inc.
65 * Image Class
95 /* The threshold at which image data is no longer stored in memory. */
120 /* Image coordinate. */
133 * Image class and supporting classes.
136 /* Image component class. */
181 /* Image class. */
186 /* The x-coordinate of the top-left corner of the image bounding box. */
189 /* The y-coordinate of the top-left corner of the image bounding box. *
    [all...]
  /external/deqp/framework/delibs/deimage/
deImage.h 4 * drawElements Image Library
23 * \brief Image library.
46 void deImage_destroy (deImage* image);
48 int deImage_getWidth (const deImage* image);
49 int deImage_getHeight (const deImage* image);
50 void* deImage_getPixelPtr (const deImage* image);
52 deARGB deImage_getPixel (const deImage* image, int x, int y);
53 void deImage_setPixel (deImage* image, int x, int y, deARGB argb);
56 deBool deImage_saveTarga (const deImage* image, const char* fileName);
58 deImage* deImage_convertFormat (const deImage* image, deImageFormat format)
    [all...]
  /external/opencv/cxcore/include/
cxcore.hpp 49 CvImage() : image(0), refcount(0) {}
52 image = cvCreateImage( size, depth, channels );
53 refcount = image ? new int(1) : 0;
56 CvImage( IplImage* img ) : image(img)
58 refcount = image ? new int(1) : 0;
61 CvImage( const CvImage& img ) : image(img.image), refcount(img.refcount)
66 CvImage( const char* filename, const char* imgname=0, int color=-1 ) : image(0), refcount(0)
69 CvImage( CvFileStorage* fs, const char* mapname, const char* imgname ) : image(0), refcount(0)
72 CvImage( CvFileStorage* fs, const char* seqname, int idx ) : image(0), refcount(0
205 IplImage* image; member in class:CvImage
    [all...]
  /external/opencv3/samples/cpp/tutorial_code/HighGUI/
BasicLinearTransformsTrackbar.cpp 20 Mat image; variable
28 Mat new_image = Mat::zeros( image.size(), image.type() );
30 for( int y = 0; y < image.rows; y++ )
31 for( int x = 0; x < image.cols; x++ )
33 new_image.at<Vec3b>(y,x)[c] = saturate_cast<uchar>( alpha*( image.at<Vec3b>(y,x)[c] ) + beta );
35 imshow("New Image", new_image);
45 /// Read image given by user
46 image = imread( argv[1] );
53 namedWindow("Original Image", 1)
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/util/
image_util.py 5 """Provides implementations of basic image processing functions.
7 Implements basic image processing functions, such as reading/writing images,
28 def Channels(image):
29 """Number of color channels in the image."""
30 return impl.Channels(image)
32 def Width(image):
33 """Width of the image."""
34 return impl.Width(image)
36 def Height(image):
37 """Height of the image.""
    [all...]
  /external/opencv3/modules/python/test/
precornerdetect.py 5 def precornerdetect(image):
6 # assume that the image is floating-point
7 corners = cv.CloneMat(image)
8 cv.PreCornerDetect(image, corners, 3)
10 dilated_corners = cv.CloneMat(image)
13 corner_mask = cv.CreateMat(image.rows, image.cols, cv.CV_8UC1)
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
ip.rsh 18 #pragma rs java_package_name(com.android.rs.image)
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageAtomicOperationTests.hpp 23 * \brief Image atomic operation tests
31 namespace image namespace in namespace:vkt
36 } // image
vktImageQualifiersTests.hpp 31 namespace image namespace in namespace:vkt
36 } // image
vktImageSizeTests.hpp 23 * \brief Image size tests
31 namespace image namespace in namespace:vkt
36 } // image
vktImageTests.hpp 23 * \brief Image Tests
31 namespace image namespace in namespace:vkt
36 } // image
  /external/opencv3/samples/cpp/tutorial_code/introduction/display_image/
display_image.cpp 27 Mat image; local
31 image = imread(imageName.c_str(), IMREAD_COLOR); // Read the file
34 if( image.empty() ) // Check for invalid input
36 cout << "Could not open or find the image" << std::endl ;
45 imshow( "Display window", image ); // Show our image inside it.
  /external/opencv3/samples/cpp/tutorial_code/introduction/windows_visual_studio_Opencv/
introduction_windows_vs.cpp 17 Mat image; local
18 image = imread(argv[1], IMREAD_COLOR); // Read the file
20 if( image.empty() ) // Check for invalid input
22 cout << "Could not open or find the image" << std::endl ;
27 imshow( "Display window", image ); // Show our image inside it.
  /external/elfutils/libelf/
elf_memory.c 41 elf_memory (char *image, size_t size)
43 if (image == NULL)
49 return __libelf_read_mmaped_file (-1, image, 0, size, ELF_C_READ, NULL);
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/ios/
UIImage+ARDUtilities.m 16 UIImage *image = [UIImage imageNamed:name];
17 if (!image) {
20 UIGraphicsBeginImageContextWithOptions(image.size, NO, 0.0f);
22 CGRect bounds = CGRectMake(0, 0, image.size.width, image.size.height);
24 [image drawInRect:bounds blendMode:kCGBlendModeDestinationIn alpha:1.0f];
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/
GraphicsUtilities.java 22 * The utility class for SWT Image and ImageData manipulation.
27 * Convert normal image to 9-patched.
28 * @return Returns 9-patched ImageData object. If image is null, returns null.
30 public static ImageData convertToNinePatch(ImageData image) {
31 if (image == null) {
34 ImageData result = new ImageData(image.width + 2, image.height + 2, image.depth,
35 image.palette);
37 final int[] colors = new int[image.width]
    [all...]

Completed in 311 milliseconds

1 2 3 4 5 6 7 8 91011>>