Home
last modified time | relevance | path

Searched refs:coordinates (Results 1 – 25 of 240) sorted by relevance

12345678910

/external/python/cpython2/Doc/library/
Dcolorsys.rst17 0 and 1, but the I and Q coordinates can be positive or negative. In all other
18 spaces, the coordinates are all between 0 and 1.
31 Convert the color from RGB coordinates to YIQ coordinates.
36 Convert the color from YIQ coordinates to RGB coordinates.
41 Convert the color from RGB coordinates to HLS coordinates.
46 Convert the color from HLS coordinates to RGB coordinates.
51 Convert the color from RGB coordinates to HSV coordinates.
56 Convert the color from HSV coordinates to RGB coordinates.
Dcmath.rst25 Conversions to and from polar coordinates
29 or *Cartesian* coordinates. It is completely determined by its *real
35 *Polar coordinates* give an alternative way to represent a complex
36 number. In polar coordinates, a complex number *z* is defined by the
43 rectangular coordinates to polar coordinates and back.
73 Return the representation of *x* in polar coordinates. Returns a
83 Return the complex number *x* with polar coordinates *r* and *phi*.
/external/python/cpython3/Doc/library/
Dcolorsys.rst18 0 and 1, but the I and Q coordinates can be positive or negative. In all other
19 spaces, the coordinates are all between 0 and 1.
32 Convert the color from RGB coordinates to YIQ coordinates.
37 Convert the color from YIQ coordinates to RGB coordinates.
42 Convert the color from RGB coordinates to HLS coordinates.
47 Convert the color from HLS coordinates to RGB coordinates.
52 Convert the color from RGB coordinates to HSV coordinates.
57 Convert the color from HSV coordinates to RGB coordinates.
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_Where.pbtxt9 This operation returns the coordinates of true elements in `input`. The
10 coordinates are returned in a 2-D tensor where the first dimension (rows)
12 represents the coordinates of the true elements. Keep in mind, the shape of
21 # 'input' has two true values, so output has two coordinates.
22 # 'input' has rank of 2, so coordinates have two indices.
32 # 'input' has 5 true values, so output has 5 coordinates.
33 # 'input' has rank of 3, so coordinates have three indices.
46 # 'input' has 5 nonzero values, so output has 5 coordinates.
47 # 'input' has rank of 3, so coordinates have three indices.
60 # 'input' has 5 nonzero magnitude values, so output has 5 coordinates.
[all …]
Dapi_def_ExtractGlimpse.pbtxt34 indicates if the offset coordinates are centered relative to
43 indicates if the offset coordinates are normalized.
67 * If the coordinates are normalized but not centered, 0.0 and 1.0
70 * If the coordinates are both normalized and centered, they range from
71 -1.0 to 1.0. The coordinates (-1.0, -1.0) correspond to the upper
74 * If the coordinates are not normalized they are interpreted as
Dapi_def_DrawBoundingBoxes.pbtxt26 boxes specified by the locations in `boxes`. The coordinates of the each
28 bounding box coordinates are floats in `[0.0, 1.0]` relative to the width and
32 box is `[0.1, 0.2, 0.5, 0.9]`, the upper-left and bottom-right coordinates of
33 the bounding box will be `(40, 10)` to `(100, 50)` (in (x,y) coordinates).
Dapi_def_CropAndResizeGradBoxes.pbtxt20 specifies the coordinates of a box in the `box_ind[i]` image and is specified
21 in normalized coordinates `[y1, x1, y2, x2]`. A normalized coordinate value of
24 `[0, image_height - 1] in image height coordinates. We do allow y1 > y2, in
26 image. The width dimension is treated similarly. Normalized coordinates
Dapi_def_CropAndResizeGradImage.pbtxt13 specifies the coordinates of a box in the `box_ind[i]` image and is specified
14 in normalized coordinates `[y1, x1, y2, x2]`. A normalized coordinate value of
17 `[0, image_height - 1] in image height coordinates. We do allow y1 > y2, in
19 image. The width dimension is treated similarly. Normalized coordinates
Dapi_def_DepthToSpace.pbtxt21 * The Y, X coordinates within each block of the output image are determined
35 Each element in the input tensor can be specified via 6 coordinates,
37 n,iY,iX,bY,bX,oC (where n=batch index, iX, iY means X or Y coordinates
38 within the input image, bX, bY means coordinates
Dapi_def_SpaceToDepth.pbtxt19 * The Y, X coordinates within each block of the input become the high order
32 Each element in the input tensor can be specified via 6 coordinates,
34 n,oY,bY,oX,bX,iC (where n=batch index, oX, oY means X or Y coordinates
35 within the output image, bX, bY means coordinates
Dapi_def_CropAndResize.pbtxt14 specifies the coordinates of a box in the `box_ind[i]` image and is specified
15 in normalized coordinates `[y1, x1, y2, x2]`. A normalized coordinate value of
18 `[0, image_height - 1]` in image height coordinates. We do allow `y1` > `y2`, in
20 image. The width dimension is treated similarly. Normalized coordinates
/external/deqp/external/openglcts/modules/glesext/tessellation_shader/
DesextcTessellationShaderVertexSpacing.cpp230 std::vector<_tess_coordinate_cartesian> coordinates; in getEdgesForQuadsTessellation() local
240 coordinates.push_back(new_coordinate); in getEdgesForQuadsTessellation()
276 …for (std::vector<_tess_coordinate_cartesian>::const_iterator coordinate_iterator = coordinates.beg… in getEdgesForQuadsTessellation()
277 coordinate_iterator != coordinates.end(); coordinate_iterator++) in getEdgesForQuadsTessellation()
340 std::find(coordinates.begin(), coordinates.end(), corner_coordinate); in getEdgesForQuadsTessellation()
344 if (iterator != coordinates.end()) in getEdgesForQuadsTessellation()
346 coordinates.erase(iterator); in getEdgesForQuadsTessellation()
439 for (std::vector<_tess_coordinate_cartesian>::const_iterator iterator = coordinates.begin(); in getEdgesForQuadsTessellation()
440 iterator != coordinates.end(); iterator++) in getEdgesForQuadsTessellation()
493 std::find(coordinates.begin(), coordinates.end(), coordinate); in getEdgesForQuadsTessellation()
[all …]
/external/fonttools/Lib/fontTools/ttLib/tables/
D_g_l_y_f.py274 ("x", self.coordinates[j][0]),
275 ("y", self.coordinates[j][1]),
292 coordinates = GlyphCoordinates()
300 coordinates.append((safeEval(attrs["x"]), safeEval(attrs["y"])))
304 self.coordinates = coordinates
306 self.endPtsOfContours = [len(coordinates)-1]
308 self.coordinates.extend (coordinates)
310 self.endPtsOfContours.append(len(self.coordinates)-1)
347 return len(self.coordinates), len(self.endPtsOfContours)
385 self.coordinates = coordinates = GlyphCoordinates.zeros(nCoordinates)
[all …]
/external/skqp/include/core/
DSkFontArguments.h21 const Coordinate* coordinates; member
44 fVariationDesignPosition.coordinates = in setAxes()
58 fVariationDesignPosition.coordinates = position.coordinates; in setVariationDesignPosition()
69 return reinterpret_cast<const Axis*>(fVariationDesignPosition.coordinates); in getAxes()
/external/skia/include/core/
DSkFontArguments.h21 const Coordinate* coordinates; member
44 fVariationDesignPosition.coordinates = in setAxes()
58 fVariationDesignPosition.coordinates = position.coordinates; in setVariationDesignPosition()
69 return reinterpret_cast<const Axis*>(fVariationDesignPosition.coordinates); in getAxes()
/external/eigen/unsupported/test/
Dcxx11_tensor_generator.cpp17 float operator()(const array<Eigen::DenseIndex, 1>& coordinates) const { in operator ()()
18 return coordinates[0]; in operator ()()
37 float operator()(const array<Eigen::DenseIndex, 2>& coordinates) const { in operator ()()
38 return 3 * coordinates[0] + 11 * coordinates[1]; in operator ()()
/external/ImageMagick/MagickCore/
Ddraw.c727 coordinates, in ConvertPrimitiveToPath() local
749 coordinates=0; in ConvertPrimitiveToPath()
759 if (coordinates <= 0) in ConvertPrimitiveToPath()
761 coordinates=(ssize_t) primitive_info[i].coordinates; in ConvertPrimitiveToPath()
766 coordinates--; in ConvertPrimitiveToPath()
778 if (coordinates > 0) in ConvertPrimitiveToPath()
1277 coordinates; in DrawBoundingRectangles() local
1345 coordinates=(ssize_t) primitive_info[0].coordinates; in DrawBoundingRectangles()
1346 primitive_info[coordinates].primitive=UndefinedPrimitive; in DrawBoundingRectangles()
1359 coordinates=(ssize_t) primitive_info[0].coordinates; in DrawBoundingRectangles()
[all …]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/clustering/
DEuclideanIntegerPoint.java109 final int[] coordinates = getPoint(); in toString() local
110 for (int i = 0; i < coordinates.length; i++) { in toString()
111 buff.append(coordinates[i]); in toString()
112 if (i < coordinates.length - 1) { in toString()
/external/tensorflow/tensorflow/contrib/tpu/python/tpu/
Ddevice_assignment.py208 coordinates = self._coordinates(replica, logical_core)
209 return self._topology_devices[coordinates]
213 coordinates = self._coordinates(replica, logical_core)
214 return _tpu_host_device_name(job, self._topology_tasks[coordinates])
218 coordinates = self._coordinates(replica, logical_core)
219 return _tpu_device_name(job, self._topology_tasks[coordinates],
220 self._topology_devices[coordinates])
/external/mesa3d/docs/specs/OLD/
DMESA_sprite_point.spec53 texture coordinates. The r and q coordinates may have been computed
74 texture and appropriate texture r coordinates could be used to
125 texture coordinates are computed as follows:
134 point's 3rd and 4th texture coordinates and r is half the point's
/external/mesa3d/src/gallium/docs/source/
Dresources.rst83 1D surface accessed with normalized coordinates.
92 - Must use normalized coordinates
107 - Must use unnormalized coordinates
114 D3D11: not supported (only PIPE_TEXTURE_2D with normalized coordinates is supported)
118 2D surface accessed with normalized coordinates.
126 - Must use normalized coordinates
143 Mipmap dimensions are reduced in all 3 coordinates.
148 - Must use normalized coordinates
174 - Must use normalized coordinates
/external/harfbuzz_ng/src/
Dhb-ot-var-fvar-table.hh41 c->check_array (coordinates, coordinates[0].static_size, axis_count)); in sanitize()
48 Fixed coordinates[VAR];/* The coordinates array for this instance. */ member
54 DEFINE_SIZE_ARRAY (4, coordinates);
/external/skqp/gm/
Dfontscalerdistortable.cpp52 SkFontArguments::VariationPosition::Coordinate coordinates[] = {{tag, styleValue}}; in onDraw() local
54 { coordinates, SK_ARRAY_COUNT(coordinates) }; in onDraw()
/external/skia/gm/
Dfontscalerdistortable.cpp52 SkFontArguments::VariationPosition::Coordinate coordinates[] = {{tag, styleValue}}; in onDraw() local
54 { coordinates, SK_ARRAY_COUNT(coordinates) }; in onDraw()
/external/skia/site/user/api/
Dindex.md13 * [SkIPoint](/user/api/SkIPoint_Reference) - two integer coordinates
14 * [SkIPoint16](/user/api/SkIPoint16_Reference) - two 16-bit integer coordinates
20 * [SkPoint](/user/api/SkPoint_Reference) - two floating point coordinates
50 transform the coordinates of the rectangle (translation, rotation,

12345678910