ee.Image.tan
Computes the tangent of the input in radians.
Usage | Returns |
---|
Image.tan() | Image |
Argument | Type | Details |
---|
this: value | Image | The image to which the operation is applied. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-10-06 UTC.
[null,null,["Last updated 2023-10-06 UTC."],[[["`Image.tan()` calculates the tangent of pixel values within an image, assuming the values represent angles in radians."],["The function operates directly on an image, returning a modified copy with the tangent applied to each pixel's value."],["This method is useful for mathematical image manipulation and potentially specific image processing techniques where tangent calculations on pixel values are required."]]],["The `tan()` function calculates the tangent of an image's pixel values, which are assumed to be in radians. It operates on an `Image` object and returns a new `Image` where each pixel's value represents the tangent of the corresponding input pixel. The function takes the input image as an argument (`this: value`).\n"]]