ee.Image.matrixMultiply
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
यह फ़ंक्शन, image1 और image2 में मौजूद बैंड के हर मैच किए गए जोड़े के लिए, मैट्रिक्स गुणन A * B दिखाता है. अगर image1 या image2 में से किसी एक में सिर्फ़ एक बैंड है, तो इसका इस्तेमाल दूसरी इमेज के सभी बैंड के साथ किया जाता है. अगर इमेज में बैंड की संख्या एक जैसी है, लेकिन उनके नाम अलग-अलग हैं, तो उन्हें नैचुरल ऑर्डर में जोड़े के तौर पर इस्तेमाल किया जाता है. आउटपुट बैंड का नाम, दोनों इनपुट में से ज़्यादा लंबाई वाले इनपुट के हिसाब से रखा जाता है. अगर दोनों इनपुट की लंबाई बराबर है, तो इमेज1 के क्रम के हिसाब से नाम रखा जाता है. आउटपुट पिक्सल का टाइप, इनपुट टाइप का यूनियन होता है.
इस्तेमाल | रिटर्न |
---|
Image.matrixMultiply(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\u003eComputes the matrix product of corresponding bands in two input images, \u003ccode\u003eimage1\u003c/code\u003e and \u003ccode\u003eimage2\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eIf either input image has a single band, it's multiplied with all bands of the other image.\u003c/p\u003e\n"],["\u003cp\u003eOutput image bands are named based on the input with more bands, prioritizing \u003ccode\u003eimage1\u003c/code\u003e in case of equal band counts.\u003c/p\u003e\n"],["\u003cp\u003eThe output pixel type is determined by finding the most inclusive type that can represent all input pixel types.\u003c/p\u003e\n"]]],[],null,["# ee.Image.matrixMultiply\n\nReturns the matrix multiplication A \\* B 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.matrixMultiply`(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. |"]]