[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["没有我需要的信息","missingTheInformationINeed","thumb-down"],["太复杂/步骤太多","tooComplicatedTooManySteps","thumb-down"],["内容需要更新","outOfDate","thumb-down"],["翻译问题","translationIssue","thumb-down"],["示例/代码问题","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2025-02-18。"],[[["Earth Engine provides several specialized edge detection algorithms, including Canny edge detection, Hough transform, and zero-crossing algorithms, for image processing tasks."],["The Canny edge detection algorithm identifies edges by calculating gradient magnitude and suppressing those of smaller magnitudes, optionally using a Gaussian pre-filter to remove noise."],["The Hough transform can be used for line extraction from edge detector results, enabling the identification of linear features in images."],["The zero-crossing algorithm detects edges by identifying pixels where neighboring pixels have opposite signs, often applied to the second derivative of an image for enhanced edge detection."],["Earth Engine offers the flexibility to adjust parameters like thresholds and sigma values to fine-tune the performance of these algorithms for specific image analysis requirements."]]],["Earth Engine offers specialized edge detection algorithms, including Canny edge detection, which uses filters to identify edges and compute gradient magnitudes, suppressing smaller ones. The Hough transform extracts lines from Canny results. `zeroCrossing()` detects edges by identifying pixels with sign changes relative to neighboring pixels. This can be applied to an image's second derivative using Gaussian kernels. The provided code examples demonstrate these techniques, using `CannyEdgeDetector`, `HoughTransform`, and `zeroCrossing()`, respectively.\n"]]