Searched refs:drawing (Results 1 - 25 of 31) sorted by relevance

12

/external/chromium-trace/catapult/tracing/tracing/ui/tracks/
H A Ddrawing_container.css6 .drawing-container {
14 .drawing-container-canvas {
/external/opencv3/samples/cpp/tutorial_code/ShapeDescriptors/
H A Dhull_demo.cpp71 Mat drawing = Mat::zeros( threshold_output.size(), CV_8UC3 ); local
75 drawContours( drawing, contours, (int)i, color, 1, 8, vector<Vec4i>(), 0, Point() );
76 drawContours( drawing, hull, (int)i, color, 1, 8, vector<Vec4i>(), 0, Point() );
81 imshow( "Hull demo", drawing );
H A DpointPolygonTest_demo.cpp58 Mat drawing = Mat::zeros( src.size(), CV_8UC3 ); local
64 { drawing.at<Vec3b>(j,i)[0] = (uchar)(255 - abs(raw_dist.at<float>(j,i))*255/minVal); }
66 { drawing.at<Vec3b>(j,i)[2] = (uchar)(255 - raw_dist.at<float>(j,i)*255/maxVal); }
68 { drawing.at<Vec3b>(j,i)[0] = 255; drawing.at<Vec3b>(j,i)[1] = 255; drawing.at<Vec3b>(j,i)[2] = 255; }
77 imshow( "Distance", drawing );
H A DgeneralContours_demo1.cpp77 Mat drawing = Mat::zeros( threshold_output.size(), CV_8UC3 ); local
81 drawContours( drawing, contours_poly, (int)i, color, 1, 8, vector<Vec4i>(), 0, Point() );
82 rectangle( drawing, boundRect[i].tl(), boundRect[i].br(), color, 2, 8, 0 );
83 circle( drawing, center[i], (int)radius[i], color, 2, 8, 0 );
88 imshow( "Contours", drawing );
H A DgeneralContours_demo2.cpp74 Mat drawing = Mat::zeros( threshold_output.size(), CV_8UC3 ); local
79 drawContours( drawing, contours, (int)i, color, 1, 8, vector<Vec4i>(), 0, Point() );
81 ellipse( drawing, minEllipse[i], color, 2, 8 );
85 line( drawing, rect_points[j], rect_points[(j+1)%4], color, 1, 8 );
90 imshow( "Contours", drawing );
H A Dmoments_demo.cpp74 Mat drawing = Mat::zeros( canny_output.size(), CV_8UC3 ); local
78 drawContours( drawing, contours, (int)i, color, 2, 8, hierarchy, 0, Point() );
79 circle( drawing, mc[i], 4, color, -1, 8, 0 );
84 imshow( "Contours", drawing );
92 drawContours( drawing, contours, (int)i, color, 2, 8, hierarchy, 0, Point() );
93 circle( drawing, mc[i], 4, color, -1, 8, 0 );
H A DfindContours_demo.cpp69 Mat drawing = Mat::zeros( canny_output.size(), CV_8UC3 ); local
73 drawContours( drawing, contours, (int)i, color, 2, 8, hierarchy, 0, Point() );
78 imshow( "Contours", drawing );
/external/opencv3/samples/python2/
H A Dgrabcut.py47 drawing = False # flag for drawing curves variable
48 rectangle = False # flag for drawing rect
51 value = DRAW_FG # drawing initialized to FG
55 global img,img2,drawing,value,mask,rectangle,rect,rect_or_mask,ix,iy,rect_over
83 drawing = True
88 if drawing == True:
93 if drawing == True:
94 drawing = False
103 filename = sys.argv[1] # for drawing purpose
150 drawing = False variable
[all...]
/external/ImageMagick/www/api/
H A Ddrawing-wand.php15 <meta name="keywords" content="magickwc, api, for, imagemagick:, drawing, wmethods, ImageMagick, PerlMagick, image processing, image, photo, software, Magick++, OpenMP, convert"/>
55 <p class="text-center"><a href="drawing-wand.php#ClearDrawingWand">ClearDrawingWand</a> &bull; <a href="drawing-wand.php#CloneDrawingWand">CloneDrawingWand</a> &bull; <a href="drawing-wand.php#DestroyDrawingWand">DestroyDrawingWand</a> &bull; <a href="drawing-wand.php#DrawAffine">DrawAffine</a> &bull; <a href="drawing-wand.php#DrawAlpha">DrawAlpha</a> &bull; <a href="drawing-wand.php#DrawAnnotation">DrawAnnotation</a> &bull; <a href="drawing-wand.php#DrawArc">DrawArc</a> &bull; <a href="drawing-wand.php#DrawBezier">DrawBezier</a> &bull; <a href="drawing
[all...]
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
H A DSpriteBatch.java49 boolean drawing = false; field in class:SpriteBatch
166 if (drawing) throw new IllegalStateException("SpriteBatch.end must be called before begin.");
176 drawing = true;
181 if (!drawing) throw new IllegalStateException("SpriteBatch.begin must be called before end.");
184 drawing = false;
231 if (!drawing) throw new IllegalStateException("SpriteBatch.begin must be called before draw.");
362 if (!drawing) throw new IllegalStateException("SpriteBatch.begin must be called before draw.");
420 if (!drawing) throw new IllegalStateException("SpriteBatch.begin must be called before draw.");
466 if (!drawing) throw new IllegalStateException("SpriteBatch.begin must be called before draw.");
513 if (!drawing) thro
[all...]
H A DPolygonSpriteBatch.java36 /** A PolygonSpriteBatch is used to draw 2D polygons that reference a texture (region). The class will batch the drawing commands
40 * setup appropriate render states. When you are done with drawing you have to call {@link PolygonSpriteBatch#end()} which will
43 * All drawing commands of the PolygonSpriteBatch operate in screen coordinates. The screen coordinate system has an x-axis
68 private boolean drawing; field in class:PolygonSpriteBatch
142 if (drawing) throw new IllegalStateException("PolygonSpriteBatch.end must be called before begin.");
152 drawing = true;
157 if (!drawing) throw new IllegalStateException("PolygonSpriteBatch.begin must be called before end.");
160 drawing = false;
206 if (!drawing) throw new IllegalStateException("PolygonSpriteBatch.begin must be called before draw.");
244 if (!drawing) thro
[all...]
H A DSpriteCache.java42 * later be used for drawing. The size, color, and texture region for each cached image cannot be modified. This information is
49 * To draw with SpriteCache, first call {@link #begin()}, then call {@link #draw(int)} with a cache ID. When SpriteCache drawing
73 private boolean drawing; field in class:SpriteCache
848 if (drawing) throw new IllegalStateException("end must be called before begin.");
867 drawing = true;
872 if (!drawing) throw new IllegalStateException("begin must be called before end.");
873 drawing = false;
886 if (!drawing) throw new IllegalStateException("SpriteCache.begin must be called before draw.");
911 if (!drawing) throw new IllegalStateException("SpriteCache.begin must be called before draw.");
948 if (drawing) thro
[all...]
H A DCpuSpriteBatch.java28 * batches, for example when drawing Groups with transform enabled.
289 if (!drawing) throw new IllegalStateException("CpuSpriteBatch.begin must be called before draw.");
411 if (!drawing) throw new IllegalStateException("CpuSpriteBatch.begin must be called before draw.");
542 if (!drawing) throw new IllegalStateException("CpuSpriteBatch.begin must be called before draw.");
596 if (!drawing) throw new IllegalStateException("CpuSpriteBatch.begin must be called before draw.");
/external/skia/tools/lua/
H A Dfilter-counter.lua25 canvas that we will be drawing into, and the name of the file.
39 Called when the current canvas is done drawing.
H A Dscrape.lua26 canvas that we will be drawing into, and the name of the file.
40 Called when the current canvas is done drawing.
H A Dglyph-counts.lua25 canvas that we will be drawing into, and the name of the file.
39 Called when the current canvas is done drawing.
H A Dscrape_dashing.lua27 canvas that we will be drawing into, and the name of the file.
41 Called when the current canvas is done drawing.
H A Dglyph-usage.lua25 canvas that we will be drawing into, and the name of the file.
39 Called when the current canvas is done drawing.
H A Dscrape_dashing_full.lua5 canvas that we will be drawing into, and the name of the file.
19 Called when the current canvas is done drawing.
/external/ImageMagick/MagickWand/
H A DAndroid.mk30 drawing-wand.c \
/external/mesa3d/docs/OLD/
H A DMESA_sprite_point.spec62 define and implement so POINT_SMOOTH is ignored when drawing sprite
/external/libvorbis/doc/
H A D09-helper.tex127 Floor decode type one uses the integer line drawing algorithm of
/external/skia/DATA/skia_resources/
H A Dslides.lua135 -- animation.proc is passed the canvas before drawing.
/external/skia/gm/DATA/skia_resources/
H A Dslides.lua135 -- animation.proc is passed the canvas before drawing.
/external/skia/resources/
H A Dslides.lua135 -- animation.proc is passed the canvas before drawing.

Completed in 1044 milliseconds

12