[[["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."],[[["Creates a 3x3 Prewitt kernel for edge detection in images."],["Allows for scaling of kernel values using the `magnitude` argument."],["Offers kernel normalization with the `normalize` argument, ensuring values sum to 1."],["Provides examples in JavaScript, Python, and Colab for utilizing the kernel."]]],["The `ee.Kernel.prewitt()` function generates a 3x3 Prewitt edge-detection kernel. It accepts two optional arguments: `magnitude`, which scales the kernel values (defaulting to 1), and `normalize`, which normalizes the values to sum to 1 (defaulting to false). The function returns the kernel. Without arguments, it produces a kernel with weights: [[1, 0, -1], [1, 0, -1], [1, 0, -1]].\n"]]