Duyuru: 15 Nisan 2025'ten önce Earth Engine'i kullanmak için kaydedilen tüm ticari olmayan projelerin Earth Engine erişimini sürdürmek için ticari olmayan uygunluğu doğrulaması gerekir.
[[["Anlaması kolay","easyToUnderstand","thumb-up"],["Sorunumu çözdü","solvedMyProblem","thumb-up"],["Diğer","otherUp","thumb-up"]],[["İhtiyacım olan bilgiler yok","missingTheInformationINeed","thumb-down"],["Çok karmaşık / çok fazla adım var","tooComplicatedTooManySteps","thumb-down"],["Güncel değil","outOfDate","thumb-down"],["Çeviri sorunu","translationIssue","thumb-down"],["Örnek veya kod sorunu","samplesCodeIssue","thumb-down"],["Diğer","otherDown","thumb-down"]],["Son güncelleme tarihi: 2025-07-26 UTC."],[[["Creates a 3x3 kernel for edge detection using the Laplacian-8 algorithm."],["The kernel has a center weight of -8 and surrounding weights of 1, enhancing edges in an image."],["Users can adjust the `magnitude` to scale the kernel values and `normalize` them to sum to 1."]]],["The `ee.Kernel.laplacian8()` function generates a 3x3 Laplacian-8 edge-detection kernel. It accepts two optional arguments: `magnitude` (float, default 1) to scale kernel values, and `normalize` (boolean, default false) to normalize values to sum to 1. The function returns a Kernel object. The default kernel matrix consists of ones around the perimeter and negative eight in the center: [[1, 1, 1], [1, -8, 1], [1, 1, 1]].\n"]]