[[["容易理解","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"]],["上次更新時間: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"]]