HomeSort by relevance Sort by last modified time
    Searched full:ellipse (Results 1 - 25 of 193) sorted by null

1 2 3 4 5 6 7 8

  /external/libxml2/result/SVG/
ellipse.xml 4 <desc>This is an ellipse, axis aligned and centered on the origin
7 <ellipse major="85" minor="45"/>
patternfill.xml 10 <ellipse style="fill: url(#fourstar)" major="40" minor="27"/>
structure01.xml 5 <svg:ellipse major="200" minor="130"/>
  /external/libxml2/test/SVG/
ellipse.xml 5 <desc>This is an ellipse, axis aligned and centered on the origin
8 <ellipse major="85" minor="45"/>
patternfill.xml 11 <ellipse style="fill: url(#fourstar)" major="40" minor="27" />
structure01.xml 6 <svg:ellipse major="200" minor="130" />
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/
shape-handler.js 34 var ellipse = scope.consumeToken(/^ellipse/, input);
35 if (ellipse && ellipse[0]) {
36 return ['ellipse'].concat(scope.consumeList([
42 ], ellipse[1]));
66 if (left[0] == 'ellipse') {
68 'ellipse(',
  /external/opencv3/samples/cpp/
contours2.cpp 64 ellipse( img, Point(dx+150, dy+100), Size(100,70), 0, 0, 360, white, -1, 8, 0 );
65 ellipse( img, Point(dx+115, dy+70), Size(30,20), 0, 0, 360, black, -1, 8, 0 );
66 ellipse( img, Point(dx+185, dy+70), Size(30,20), 0, 0, 360, black, -1, 8, 0 );
67 ellipse( img, Point(dx+115, dy+70), Size(15,15), 0, 0, 360, white, -1, 8, 0 );
68 ellipse( img, Point(dx+185, dy+70), Size(15,15), 0, 0, 360, white, -1, 8, 0 );
69 ellipse( img, Point(dx+115, dy+70), Size(5,5), 0, 0, 360, black, -1, 8, 0 );
70 ellipse( img, Point(dx+185, dy+70), Size(5,5), 0, 0, 360, black, -1, 8, 0 );
71 ellipse( img, Point(dx+150, dy+100), Size(10,5), 0, 0, 360, black, -1, 8, 0 );
72 ellipse( img, Point(dx+150, dy+150), Size(40,10), 0, 0, 360, black, -1, 8, 0 );
73 ellipse( img, Point(dx+27, dy+100), Size(20,35), 0, 0, 360, white, -1, 8, 0 )
    [all...]
fitellipse.cpp 4 * This program is demonstration for ellipse fitting. Program finds
27 // "\nThis program is demonstration for ellipse fitting. The program finds\n"
86 ellipse(cimage, box, Scalar(0,0,255), 1, LINE_AA);
87 ellipse(cimage, box.center, box.size*0.5f, box.angle, 0, 360, Scalar(0,255,255), 1, LINE_AA);
  /external/opencv3/samples/python2/
contours.py 30 cv2.ellipse( img, (dx+150, dy+100), (100,70), 0, 0, 360, white, -1 )
31 cv2.ellipse( img, (dx+115, dy+70), (30,20), 0, 0, 360, black, -1 )
32 cv2.ellipse( img, (dx+185, dy+70), (30,20), 0, 0, 360, black, -1 )
33 cv2.ellipse( img, (dx+115, dy+70), (15,15), 0, 0, 360, white, -1 )
34 cv2.ellipse( img, (dx+185, dy+70), (15,15), 0, 0, 360, white, -1 )
35 cv2.ellipse( img, (dx+115, dy+70), (5,5), 0, 0, 360, black, -1 )
36 cv2.ellipse( img, (dx+185, dy+70), (5,5), 0, 0, 360, black, -1 )
37 cv2.ellipse( img, (dx+150, dy+100), (10,5), 0, 0, 360, black, -1 )
38 cv2.ellipse( img, (dx+150, dy+150), (40,10), 0, 0, 360, black, -1 )
39 cv2.ellipse( img, (dx+27, dy+100), (20,35), 0, 0, 360, white, -1
    [all...]
  /external/skia/src/svg/parser/
SkSVGEllipse.h 16 DECLARE_SVG_INFO(Ellipse);
  /external/skia/src/gpu/
GrOvalRenderer.h 41 const SkRect& ellipse,
45 const SkRect& ellipse,
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/blink/interpolation/
shape-outside.html 25 from: 'ellipse(100% 100% at 0% 0%)',
26 to: 'ellipse(50% 50% at 25% 25%)',
28 {at: -0.3, is: 'ellipse(115% 115% at -7.5% -7.5%)'},
29 {at: 0, is: 'ellipse(100% 100% at 0% 0%)'},
30 {at: 0.3, is: 'ellipse(85% 85% at 7.5% 7.5%)'},
31 {at: 0.6, is: 'ellipse(70% 70% at 15% 15%)'},
32 {at: 1, is: 'ellipse(50% 50% at 25% 25%)'},
33 {at: 1.5, is: 'ellipse(25% 25% at 37.5% 37.5%)'}
65 to: 'ellipse(100% 100% at 0% 0%)',
70 {at: 0.6, is: 'ellipse(100% 100% at 0% 0%)'}
    [all...]
  /external/opencv3/doc/py_tutorials/py_gui/py_drawing_functions/
py_drawing_functions.markdown 9 **cv2.ellipse()**, **cv2.putText()** etc.
52 ### Drawing Ellipse
54 To draw the ellipse, we need to pass several arguments. One argument is the center location (x,y).
56 of ellipse in anti-clockwise direction. startAngle and endAngle denotes the starting and ending of
57 ellipse arc measured in clockwise direction from major axis. i.e. giving values 0 and 360 gives the
58 full ellipse. For more details, check the documentation of **cv2.ellipse()**. Below example draws a
59 half ellipse at the center of the image.
61 cv2.ellipse(img,(256,256),(100,50),0,0,180,255,-1)
107 -# The angles used in ellipse function is not our circular angles. For more details, visit [thi
    [all...]
  /external/guice/extensions/grapher/src/com/google/inject/grapher/graphviz/
NodeShape.java 28 ELLIPSE("ellipse"),
  /packages/apps/ContactsCommon/res/values-land/
integers.xml 20 <!-- The number of characters in the snippet before we need to tokenize and ellipse. -->
  /packages/apps/ContactsCommon/res/values-sw600dp-land/
integers.xml 20 <!-- The number of characters in the snippet before we need to tokenize and ellipse. -->
  /packages/apps/ContactsCommon/res/values-sw720dp/
integers.xml 20 <!-- The number of characters in the snippet before we need to tokenize and ellipse. -->
  /packages/apps/ContactsCommon/res/values-sw720dp-land/
integers.xml 20 <!-- The number of characters in the snippet before we need to tokenize and ellipse. -->
  /external/opencv3/doc/tutorials/core/basic_geometric_drawing/
basic_geometric_drawing.markdown 12 - Draw an **ellipse** by using the OpenCV function @ref cv::ellipse
129 ellipse( img,
140 From the code above, we can observe that the function @ref cv::ellipse draws an ellipse such
143 - The ellipse is displayed in the image **img**
144 - The ellipse center is located in the point **(w/2.0, w/2.0)** and is enclosed in a box
146 - The ellipse is rotated **angle** degrees
147 - The ellipse extends an arc between **0** and **360** degrees
149 - The ellipse's **thickness** is 2
    [all...]
  /external/libxml2/result/noent/
svg2 17 <ellipse cx="182" cy="127" major="37" minor="31" angle="90"/>
45 <ellipse cx="208" cy="180" major="45" minor="31" angle="0"/>
  /external/libxml2/result/
svg2 17 <ellipse cx="182" cy="127" major="37" minor="31" angle="90"/>
45 <ellipse cx="208" cy="180" major="45" minor="31" angle="0"/>
  /external/libxml2/test/
svg2 18 <ellipse cx = "182" cy = "127" major = "37" minor = "31" angle = "90"/>
46 <ellipse cx = "208" cy = "180" major = "45" minor = "31" angle = "0"/>
  /external/opencv3/modules/features2d/src/
evaluation.cpp 129 Scalar ellipse; // 3 elements a, b, c: ax^2+2bxy+cy^2=1 member in class:EllipticKeyPoint
130 Size_<float> axes; // half length of ellipse axes
142 ellipse = _ellipse;
144 double a = ellipse[0], b = ellipse[1], c = ellipse[2];
151 boundingBox.width = (float)sqrt(ellipse[2]/ac_b2);
152 boundingBox.height = (float)sqrt(ellipse[0]/ac_b2);
166 return getSecondMomentsMatrix(ellipse);
269 //compute the distance from the ellipse cente
    [all...]
  /external/opencv3/samples/cpp/tutorial_code/ImgProc/
Morphology_1.cpp 46 createTrackbar( "Element:\n 0: Rect \n 1: Cross \n 2: Ellipse", "Erosion Demo",
55 createTrackbar( "Element:\n 0: Rect \n 1: Cross \n 2: Ellipse", "Dilation Demo",

Completed in 484 milliseconds

1 2 3 4 5 6 7 8