[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-10-06 UTC."],[[["Generates a plus-shaped kernel (a matrix of weights) for image processing."],["The kernel's radius, units of measurement, normalization, and magnitude can be customized."],["By default, the kernel values are normalized to sum to 1 and have a magnitude of 1."],["This kernel can be applied to images to perform operations like edge detection or feature extraction where a cross-shaped neighborhood is relevant."]]],["A plus-shaped kernel is generated using `ee.Kernel.plus`, taking a `radius` to define its size. The `units` parameter, defaulting to 'pixels', can be set to 'meters' for zoom-responsive sizing. The kernel values can be normalized to sum to 1 with the `normalize` parameter (default true) or scaled by a `magnitude`. The kernel output is shown as a matrix with weighted values.\n"]]