ee.Image.leftShift
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
यह फ़ंक्शन, image1 और image2 में मौजूद बैंड के हर मैच किए गए जोड़े के लिए, v1 को v2 बिट से बाईं ओर शिफ़्ट करने की गणना करता है. अगर image1 या image2 में से किसी एक में सिर्फ़ एक बैंड है, तो इसका इस्तेमाल दूसरी इमेज के सभी बैंड के साथ किया जाता है. अगर इमेज में बैंड की संख्या एक जैसी है, लेकिन उनके नाम अलग-अलग हैं, तो उन्हें नैचुरल ऑर्डर में जोड़े के तौर पर इस्तेमाल किया जाता है. आउटपुट बैंड का नाम, दोनों इनपुट में से ज़्यादा लंबाई वाले इनपुट के हिसाब से रखा जाता है. अगर दोनों इनपुट की लंबाई बराबर है, तो इमेज1 के क्रम के हिसाब से नाम रखा जाता है. आउटपुट पिक्सल का टाइप, इनपुट टाइप का यूनियन होता है.
इस्तेमाल | रिटर्न |
---|
Image.leftShift(image2) | इमेज |
आर्ग्यूमेंट | टाइप | विवरण |
---|
यह: image1 | इमेज | वह इमेज जिससे लेफ्ट ऑपरेंड बैंड लिए जाते हैं. |
image2 | इमेज | वह इमेज जिससे राइट ऑपरेंड बैंड लिए जाते हैं. |
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2025-07-26 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2025-07-26 (UTC) को अपडेट किया गया."],[[["\u003cp\u003eCalculates the left bitwise shift of corresponding bands in two images, using all bands or matching bands as appropriate.\u003c/p\u003e\n"],["\u003cp\u003eOutput image bands inherit the names of the longer input, or the first image's band names if they're equal in length.\u003c/p\u003e\n"],["\u003cp\u003ePixel type in the resulting image is determined by the most expressive type encompassing both input image types.\u003c/p\u003e\n"],["\u003cp\u003eThe function takes two image arguments, with the first image used as the base for the operation.\u003c/p\u003e\n"],["\u003cp\u003eIt's accessible via the \u003ccode\u003eImage.leftShift()\u003c/code\u003e method and produces a new Image as the result.\u003c/p\u003e\n"]]],["Performs a bitwise left shift operation between two images. It shifts the bits of `image1` by the amount specified in `image2` for each corresponding band. If one image has a single band, it's applied against all bands of the other. Bands are matched pairwise if they have the same number, otherwise the natural order. The output band names are derived from the longer input image or from `image1` if lengths are equal, and the output pixel type is a union of the inputs.\n"],null,["# ee.Image.leftShift\n\nCalculates the left shift of v1 by v2 bits for each matched pair of bands in image1 and image2. If either image1 or image2 has only 1 band, then it is used against all the bands in the other image. If the images have the same number of bands, but not the same names, they're used pairwise in the natural order. The output bands are named for the longer of the two inputs, or if they're equal in length, in image1's order. The type of the output pixels is the union of the input types.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|---------------------------|---------|\n| Image.leftShift`(image2)` | Image |\n\n| Argument | Type | Details |\n|----------------|-------|---------------------------------------------------------|\n| this: `image1` | Image | The image from which the left operand bands are taken. |\n| `image2` | Image | The image from which the right operand bands are taken. |"]]