/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/ |
D | screen_finder.py | 590 for corner in corners: 591 if corner is None: 596 sqdist = cv_util.SqDistance(corner, point) 601 cv_util.IsPointApproxOnLine(corner, line1, tolerance) 603 cv_util.IsPointApproxOnLine(corner, line2, tolerance) 622 corner = sorted_corners[i] 623 if np.isnan(corner[0]): 631 corner_image = self._frame_edges[corner[1] - 1:corner[1] + 2, 632 corner[0] - 1:corner[0] + 2] 636 self._frame_edges[corner[1] - 1 + p[1]][corner[0] - 1 + p[0]] = 128 [all …]
|
/external/eigen/test/ |
D | geo_alignedbox.cpp | 121 VERIFY_IS_APPROX( m, box.corner( BoxType::BottomLeft ) ); in specificTest1() 122 VERIFY_IS_APPROX( M, box.corner( BoxType::TopRight ) ); in specificTest1() 125 VERIFY_IS_APPROX( bottomRight, box.corner( BoxType::BottomRight ) ); in specificTest1() 126 VERIFY_IS_APPROX( topLeft, box.corner( BoxType::TopLeft ) ); in specificTest1() 147 VERIFY_IS_APPROX( m, box.corner( BoxType::BottomLeftFloor ) ); in specificTest2() 148 VERIFY_IS_APPROX( M, box.corner( BoxType::TopRightCeil ) ); in specificTest2() 151 VERIFY_IS_APPROX( bottomRightFloor, box.corner( BoxType::BottomRightFloor ) ); in specificTest2() 152 VERIFY_IS_APPROX( topLeftFloor, box.corner( BoxType::TopLeftFloor ) ); in specificTest2()
|
D | eigen2support.cpp | 40 VERIFY_IS_EQUAL((m1.corner(TopLeft,1,1)), (m1.block(0,0,1,1))); in eigen2support() 41 VERIFY_IS_EQUAL((m1.template corner<1,1>(TopLeft)), (m1.template block<1,1>(0,0))); in eigen2support()
|
/external/eigen/Eigen/src/Eigen2Support/ |
D | Block.h | 34 ::corner(CornerType type, Index cRows, Index cCols) in corner() function 54 DenseBase<Derived>::corner(CornerType type, Index cRows, Index cCols) const in corner() function 86 DenseBase<Derived>::corner(CornerType type) in corner() function 107 DenseBase<Derived>::corner(CornerType type) const in corner() function
|
/external/libvterm/src/encoding/ |
D | DECdrawing.tbl | 11 6/10 = U+2518 # BOX DRAWINGS LIGHT UP AND LEFT (bottom-right corner) 12 6/11 = U+2510 # BOX DRAWINGS LIGHT DOWN AND LEFT (top-right corner) 13 6/12 = U+250C # BOX DRAWINGS LIGHT DOWN AND RIGHT (top-left corner) 14 6/13 = U+2514 # BOX DRAWINGS LIGHT UP AND RIGHT (bottom-left corner)
|
/external/opencv3/doc/py_tutorials/py_feature2d/py_fast/ |
D | py_fast.markdown | 19 Edward Rosten and Tom Drummond in their paper "Machine learning for high-speed corner detection" in 32 -# Now the pixel \f$p\f$ is a corner if there exists a set of \f$n\f$ contiguous pixels in the cir… 37 …darker. If so, then checks 5 and 13). If \f$p\f$ is a corner, then at least three of these must all 39 cannot be a corner. The full segment test criterion can then be applied to the passed candidates 45 questions and distribution of corner appearances. 64 6. Define a new boolean variable, \f$K_p\f$, which is true if \f$p\f$ is a corner and false otherw… 67 about whether the candidate pixel is a corner, measured by the entropy of \f$K_p\f$. 83 It is several times faster than other existing corner detectors. 136 -# Edward Rosten and Tom Drummond, “Machine learning for high speed corner detection” in 9th 139 corner detection" in IEEE Trans. Pattern Analysis and Machine Intelligence, 2010, vol 32, pp.
|
/external/opencv3/doc/tutorials/features2d/trackingmotion/generic_corner_detector/ |
D | generic_corner_detector.markdown | 1 Creating yor own corner detector {#tutorial_generic_corner_detector} 10 to determine if a pixel is a corner. 11 - Use the OpenCV function @ref cv::cornerMinEigenVal to find the minimum eigenvalues for corner
|
/external/opencv3/doc/py_tutorials/py_feature2d/py_shi_tomasi/ |
D | py_shi_tomasi.markdown | 9 - We will learn about the another corner detector: Shi-Tomasi Corner Detector 25 If it is a greater than a threshold value, it is considered as a corner. If we plot it in 31 \f$\lambda_{min}\f$, it is conidered as a corner(green region). 39 level, which is a value between 0-1, which denotes the minimum quality of corner below which 44 Then function takes first strongest corner, throws away all the nearby corners in the range of
|
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/ |
D | exposure_compensate.hpp | 82 virtual void apply(int index, Point corner, InputOutputArray image, InputArray mask) = 0; 103 void apply(int index, Point corner, InputOutputArray image, InputArray mask); 120 void apply(int index, Point corner, InputOutputArray image, InputArray mask);
|
/external/skia/gm/ |
D | patheffects.cpp | 20 SkPathEffect* corner = SkCornerPathEffect::Create(25); in compose_pe() local 23 compose = SkComposePathEffect::Create(pe, corner); in compose_pe() 24 corner->unref(); in compose_pe() 26 compose = corner; in compose_pe()
|
/external/opencv3/doc/tutorials/features2d/trackingmotion/corner_subpixeles/ |
D | corner_subpixeles.markdown | 9 - Use the OpenCV function @ref cv::cornerSubPix to find more exact corner positions (more exact 65 * @brief Apply Shi-Tomasi corner detector 83 /// Apply corner detection 111 /// Calculate the refined corner locations
|
/external/opencv3/doc/py_tutorials/py_calib3d/py_pose/ |
D | py_pose.markdown | 21 corner. X axis in blue color, Y axis in green color and Z axis in red color. So in-effect, Z axis 39 corner = tuple(corners[0].ravel()) 40 img = cv2.line(img, corner, tuple(imgpts[0].ravel()), (255,0,0), 5) 41 img = cv2.line(img, corner, tuple(imgpts[1].ravel()), (0,255,0), 5) 42 img = cv2.line(img, corner, tuple(imgpts[2].ravel()), (0,0,255), 5) 61 each of (3,0,0),(0,3,0),(0,0,3) in 3D space. Once we get them, we draw lines from the first corner
|
/external/opencv3/doc/py_tutorials/py_feature2d/py_sift_intro/ |
D | py_sift_intro.markdown | 14 In last couple of chapters, we saw some corner detectors like Harris etc. They are 16 obvious because corners remain corners in rotated image also. But what about scaling? A corner may 17 not be a corner if the image is scaled. For example, check a simple image below. A corner in a small 18 image within a small window is flat when it is zoomed in the same window. So Harris corner is not 34 different scale. It is OK with small corner. But to detect larger corners we need larger windows. 38 gaussian kernel with low \f$\sigma\f$ gives high value for small corner while guassian kernel with … 39 \f$\sigma\f$ fits well for larger corner. So, we can find the local maxima across the scale and spa… 69 Harris corner detector is used. They used a 2x2 Hessian matrix (H) to compute the pricipal 70 curvature. We know from Harris corner detector that for edges, one eigen value is larger than the
|
/external/opencv3/doc/tutorials/features2d/trackingmotion/good_features_to_track/ |
D | good_features_to_track.markdown | 1 Shi-Tomasi corner detector {#tutorial_good_features_to_track} 66 * @brief Apply Shi-Tomasi corner detector 84 /// Apply corner detection
|
/external/opencv/cv/src/ |
D | cvcalibinit.cpp | 151 static void icvOrderQuad(CvCBQuad *quad, CvCBCorner *corner, int common); 808 CvCBCorner* corner; in icvAddOuterQuad() local 813 corner = &(*corners)[all_count*4+k]; in icvAddOuterQuad() 815 memset( corner, 0, sizeof(*corner) ); in icvAddOuterQuad() 816 corner->pt = pt; in icvAddOuterQuad() 817 q->corners[k] = corner; in icvAddOuterQuad() 818 corner->pt.x += dx; in icvAddOuterQuad() 819 corner->pt.y += dy; in icvAddOuterQuad() 986 icvOrderQuad(CvCBQuad *quad, CvCBCorner *corner, int common) in icvOrderQuad() argument 991 if (quad->corners[tc]->pt.x == corner->pt.x && in icvOrderQuad() [all …]
|
/external/opencv3/doc/py_tutorials/py_feature2d/py_features_harris/ |
D | py_features_harris.markdown | 26 We have to maximize this function \f$E(u,v)\f$ for corner detection. That means, we have to maximiz… 41 determine if a window can contain a corner or not. 50 So the values of these eigen values decide whether a region is corner, edge or flat. 56 \f$\lambda_1 \sim \lambda_2\f$, the region is a corner. 71 - **blockSize** - It is the size of neighbourhood considered for corner detection 107 corners (There may be a bunch of pixels at a corner, we take their centroid) to refine them. Harris
|
/external/opencv3/modules/calib3d/src/ |
D | circlesgrid.cpp | 1495 std::vector<Segment> corner; in getCornerSegments() local 1496 corner.push_back(Segment(keypoints[points[1][0]], keypoints[points[0][0]])); in getCornerSegments() 1497 corner.push_back(Segment(keypoints[points[0][0]], keypoints[points[0][1]])); in getCornerSegments() 1498 segments.push_back(corner); in getCornerSegments() 1502 corner.clear(); in getCornerSegments() 1504 corner.push_back(Segment(keypoints[points[0][w - 2]], keypoints[points[0][w - 1]])); in getCornerSegments() 1505 corner.push_back(Segment(keypoints[points[0][w - 1]], keypoints[points[1][w - 1]])); in getCornerSegments() 1506 segments.push_back(corner); in getCornerSegments() 1510 corner.clear(); in getCornerSegments() 1512 corner.push_back(Segment(keypoints[points[h - 2][w - 1]], keypoints[points[h - 1][w - 1]])); in getCornerSegments() [all …]
|
D | calibinit.cpp | 179 static void icvOrderQuad(CvCBQuad *quad, CvCBCorner *corner, int common); 886 CvCBCorner* corner; in icvAddOuterQuad() local 891 corner = &(*corners)[all_count*4+k]; in icvAddOuterQuad() 893 memset( corner, 0, sizeof(*corner) ); in icvAddOuterQuad() 894 corner->pt = pt; in icvAddOuterQuad() 895 q->corners[k] = corner; in icvAddOuterQuad() 896 corner->pt.x += dx; in icvAddOuterQuad() 897 corner->pt.y += dy; in icvAddOuterQuad() 1064 icvOrderQuad(CvCBQuad *quad, CvCBCorner *corner, int common) in icvOrderQuad() argument 1069 if (quad->corners[tc]->pt.x == corner->pt.x && in icvOrderQuad() [all …]
|
/external/opencv3/doc/tutorials/features2d/trackingmotion/harris_detector/ |
D | harris_detector.markdown | 1 Harris corner detector {#tutorial_harris_detector} 33 In this tutorial we will study the *corner* features, specifically. 35 ### Why is a corner so special? 107 - A score is calculated for each window, to determine if it can possibly contain a corner: 116 a window with a score \f$R\f$ greater than a certain value is considered a "corner"
|
/external/opencv3/doc/py_tutorials/py_gui/py_drawing_functions/ |
D | py_drawing_functions.markdown | 40 To draw a rectangle, you need top-left corner and bottom-right corner of rectangle. This time we 41 will draw a green rectangle at the top-right corner of image. 85 - Position coordinates of where you want put it (i.e. bottom-left corner where data starts).
|
/external/opencv3/modules/imgproc/ |
D | opencl_kernels_imgproc.cpp | 949 const struct ProgramEntry corner={"corner", variable 1110 ProgramSource corner_oclsrc(corner.programStr);
|
/external/autotest/client/virt/ |
D | virt_step_editor.py | 800 (corner, size) = corner_and_size_clipped(self.barrier_corner0, 810 corner[0], corner[1], 816 (corner, size) = corner_and_size_clipped(self.barrier_corner0, 822 corner0 = [min(corner[0], old_corner[0]), min(corner[1], old_corner[1])] 823 corner1 = [max(corner[0] + size[0], old_corner[0] + old_size[0]), 824 max(corner[1] + size[1], old_corner[1] + old_size[1])] 830 (corner, size) = corner_and_size_clipped(self.barrier_corner0, 833 self.event_box.queue_draw_area(corner[0], corner[1], size[0], size[1])
|
/external/eigen/doc/ |
D | A05_PortingFrom2To3.dox | 56 matrix.corner(TopLeft,r,c) 57 matrix.corner(TopRight,r,c) 58 matrix.corner(BottomLeft,r,c) 59 matrix.corner(BottomRight,r,c) 60 matrix.corner<r,c>(TopLeft) 61 matrix.corner<r,c>(TopRight) 62 matrix.corner<r,c>(BottomLeft) 63 matrix.corner<r,c>(BottomRight)
|
/external/autotest/client/site_tests/firmware_TouchMTB/tests/logs/lumpy/20130506_032659-fw_11.23-robot_sim/ |
D | touch_firmware_report-lumpy-fw_11.23-complete-20130614_065817 | 62 Use one finger to physically click the [1;32mbottom left corner[0m of the touch surface. 91 Use one finger to physically click the [1;32mbottom left corner[0m of the touch surface. 178 Use one finger to physically click the [1;32mbottom right corner[0m of the touch surface. 207 Use one finger to physically click the [1;32mbottom right corner[0m of the touch surface.
|
/external/autotest/client/site_tests/firmware_TouchMTB/tests/logs/lumpy/20130506_030025-fw_11.27-robot_sim/ |
D | touch_firmware_report-lumpy-fw_11.27-complete-20130614_065448 | 62 Use one finger to physically click the [1;32mbottom left corner[0m of the touch surface. 91 Use one finger to physically click the [1;32mbottom left corner[0m of the touch surface. 178 Use one finger to physically click the [1;32mbottom right corner[0m of the touch surface. 207 Use one finger to physically click the [1;32mbottom right corner[0m of the touch surface.
|