Searched defs:image (Results 1 - 25 of 551) sorted by relevance

1234567891011>>

/external/deqp/external/vulkancts/modules/vulkan/image/
H A DvktImageAtomicOperationTests.hpp31 namespace image namespace in namespace:vkt
36 } // image
H A DvktImageLoadStoreTests.hpp33 namespace image namespace in namespace:vkt
42 } // image
H A DvktImageQualifiersTests.hpp31 namespace image namespace in namespace:vkt
36 } // image
H A DvktImageSizeTests.hpp31 namespace image namespace in namespace:vkt
36 } // image
H A DvktImageTests.hpp31 namespace image namespace in namespace:vkt
36 } // image
H A DvktImageTests.cpp33 namespace image namespace in namespace:vkt
55 return createTestGroup(testCtx, "image", "Image tests", createChildren);
58 } // image
H A DvktImageTexture.cpp28 namespace image namespace in namespace:vkt
152 } // image
/external/elfutils/libelf/
H A Delf_memory.c41 elf_memory (char *image, size_t size) argument
43 if (image == NULL)
49 return __libelf_read_mmaped_file (-1, image, 0, size, ELF_C_READ, NULL);
/external/opencv3/samples/cpp/tutorial_code/introduction/display_image/
H A Ddisplay_image.cpp27 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/
H A Dintroduction_windows_vs.cpp17 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/skia/tests/
H A DInvalidIndexedPngTest.cpp31 SkBitmap image; local
35 decode_memory(gPngData, sizeof(gPngData), &image);
H A DIndexedPngOverflowTest.cpp15 // A 20x1 image with 8 bits per pixel and a palette size of 2. Pixel values are 255, 254... Run
32 SkBitmap image; local
33 bool success = decode_memory(gPng, sizeof(gPng), &image);
39 canvas->drawBitmapRect(image, destRect, nullptr);
/external/opencv3/samples/cpp/example_cmake/
H A Dexample.cpp10 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) argument
[all...]
/external/pdfium/third_party/libopenjpeg20/
H A Dt2.h55 /** Encoding: pointer to the src image. Decoding: pointer to the dst image. */
56 opj_image_t *image; member in struct:opj_t2
57 /** pointer to the image coding parameters */
117 * @param p_image Source or destination image
/external/libpcap/
H A Dbpf_image.c56 static char image[256]; local
311 (void)snprintf(image, sizeof image,
315 (void)snprintf(image, sizeof image,
319 return image;
/external/libpng/contrib/examples/
H A Dpngtopng.c32 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, arg
[all...]
/external/opencv3/samples/cpp/
H A Dimage_sequence.cpp32 cerr << "Failed to open the image sequence!\n" << endl;
36 Mat image; local
41 // Read in image from sequence
42 sequence >> image; local
44 // If no image was retrieved -> end of sequence
45 if(image.empty())
51 imshow("Image sequence | press ESC to close", image);
/external/pdfium/core/src/fxcodec/jbig2/
H A DJBig2_SymbolDict.cpp22 CJBig2_Image* image = src->m_SDEXSYMS.get(i); local
23 dst->m_SDEXSYMS.push_back(image ? new CJBig2_Image(*image) : nullptr);
/external/skia/src/animator/
H A DSkDrawShader.h23 SkBaseBitmap* image; member in class:SkDrawBitmapShader
/external/chromium-trace/catapult/third_party/flot/
H A Djquery.flot.image.js6 The data syntax is [ [ image, x1, y1, x2, y2 ], ... ] where (x1, y1) and
7 (x2, y2) are where you intend the two opposite corners of the image to end up
8 in the plot. Image must be a fully loaded Javascript image (you can make one
9 with new Image()). If the image is not complete, it's skipped when plotting.
16 Then call $.plot.image.loadData( data, options, callback ) where data and
22 A more low-level helper, $.plot.image.load(urls, callback) is also included.
46 Setting "anchor" to "center" causes the pixels in the image to be anchored at
66 $.plot.image = {};
68 $.plot.image.loadDataImages = function (series, options, callback) {
88 $.plot.image
[all...]
H A Djquery.flot.image.min.js7 (function($){var options={series:{images:{show:false,alpha:1,anchor:"corner"}}};$.plot.image={};$.plot.image.loadDataImages=function(series,options,callback){var urls=[],points=[];var defaultShow=options.series.images.show;$.each(series,function(i,s){if(!(defaultShow||s.images.show))return;if(s.data)s=s.data;$.each(s,function(i,p){if(typeof p[0]=="string"){urls.push(p[0]);points.push(p)}})});$.plot.image.load(urls,function(loadedImages){$.each(points,function(i,p){var url=p[0];if(loadedImages[url])p[0]=loadedImages[url]});callback()})};$.plot.image.load=function(urls,callback){var missing=urls.length,loaded={};if(missing==0)callback({});$.each(urls,function(i,url){var handler=function(){--missing;loaded[url]=this;if(missing==0)callback(loaded)};$("<img />").load(handler).error(handler).attr("src",url)})};function drawSeries(plot,ctx,series){var plotOffset=plot.getPlotOffset();if(!series.images||!series.images.show)return;var points=series.datapoints.points,ps=series.datapoints.pointsize;for(var i=0;i<points.length;i+=ps){var img=points[i],x1=points[i+1],y1=points[i+2],x2=points[i+3],y2=points[i+4],xaxis=series.xaxis,yaxis=series.yaxis,tmp;if(!img||img.width<=0||img.height<=0)continue;if(x1>x2){tmp=x2;x2=x1;x1=tmp}if(y1>y2){tmp=y2;y2=y1;y1=tmp}if(series.images.anchor=="center"){tmp=.5*(x2-x1)/(img.width-1);x1-=tmp;x2+=tmp;tmp=.5*(y2-y1)/(img.height-1);y1-=tmp;y2+=tmp}if(x1==x2||y1==y2||x1>=xaxis.max||x2<=xaxis.min||y1>=yaxis.max||y2<=yaxis.min)continue;var sx1=0,sy1=0,sx2=img.width,sy2=img.height;if(x1<xaxis.min){sx1+=(sx2-sx1)*(xaxis.min-x1)/(x2-x1);x1=xaxis.min}if(x2>xaxis.max){sx2+=(sx2-sx1)*(xaxis.max-x2)/(x2-x1);x2=xaxis.max}if(y1<yaxis.min){sy2+=(sy1-sy2)*(yaxis.min-y1)/(y2-y1);y1=yaxis.min}if(y2>yaxis.max){sy1+=(sy1-sy2)*(yaxis.max-y2)/(y2-y1);y2=yaxis.max}x1=xaxis.p2c(x1);x2=xaxis.p2c(x2);y1=yaxis.p2c(y1);y2=yaxis.p2c(y2);if(x1>x2){tmp=x2;x2=x1;x1=tmp}if(y1>y2){tmp=y2;y2=y1;y1=tmp}tmp=ctx.globalAlpha;ctx.globalAlpha*=series.images.alpha;ctx.drawImage(img,sx1,sy1,sx2-sx1,sy2-sy1,x1+plotOffset.left,y1+plotOffset.top,x2-x1,y2-y1);ctx.globalAlpha=tmp}}function processRawData(plot,series,data,datapoints){if(!series.images.show)return;datapoints.format=[{required:true},{x:true,number:true,required:true},{y:true,number:true,required:true},{x:true,number:true,required:true},{y:true,number:true,required:true}]}function init(plot){plot.hooks.processRawData.push(processRawData);plot.hooks.drawSeries.push(drawSeries)}$.plot.plugins.push({init:init,options:options,name:"image",version:"1.1"})})(jQuery)
/external/autotest/client/bin/
H A Dscreenshot.py11 argparser.add_argument("path", help="output image location")
21 image = crtcScreenshot(args.crtc) variable
22 image.save(args.path)
/external/libbrillo/brillo/
H A Dmime_utils.h23 BRILLO_EXPORT extern const char kImage[]; // image
35 namespace image { namespace in namespace:brillo::mime
36 // Common image MIME types
37 BRILLO_EXPORT extern const char kJpeg[]; // image/jpeg
38 BRILLO_EXPORT extern const char kPng[]; // image/png
39 BRILLO_EXPORT extern const char kBmp[]; // image/bmp
40 BRILLO_EXPORT extern const char kTiff[]; // image/tiff
41 BRILLO_EXPORT extern const char kGif[]; // image/gif
42 } // namespace image
/external/opencv3/modules/cudafeatures2d/src/
H A Dfeature2d_async.cpp49 void cv::cuda::Feature2DAsync::detectAsync(InputArray image, argument
54 if (image.empty())
60 detectAndComputeAsync(image, mask, keypoints, noArray(), false, stream);
63 void cv::cuda::Feature2DAsync::computeAsync(InputArray image, argument
68 if (image.empty())
74 detectAndComputeAsync(image, noArray(), keypoints, descriptors, true, stream);
77 void cv::cuda::Feature2DAsync::detectAndComputeAsync(InputArray /*image*/,
/external/opencv3/modules/cudaimgproc/perf/
H A Dperf_canny.cpp63 const cv::Mat image = readImage(fileName, cv::IMREAD_GRAYSCALE); local
64 ASSERT_FALSE(image.empty());
71 const cv::cuda::GpuMat d_image(image);
84 TEST_CYCLE() cv::Canny(image, dst, low_thresh, high_thresh, apperture_size, useL2gradient);

Completed in 1451 milliseconds

1234567891011>>