إشعار: يجب
إثبات أهلية جميع المشاريع غير التجارية المسجّلة لاستخدام Earth Engine قبل
15 أبريل 2025 من أجل الحفاظ على إمكانية الوصول إلى Earth Engine.
ee.Algorithms.CrossCorrelation
تنظيم صفحاتك في مجموعات
يمكنك حفظ المحتوى وتصنيفه حسب إعداداتك المفضّلة.
تقدّم معلومات عن جودة تسجيل الصور بين صورتَين (نظريًا) تم تسجيلهما معًا. المُدخل هو صورتان تحتويان على العدد نفسه من النطاقات. تنتج هذه الدالة صورة مؤلّفة من أربعة نطاقات من المعلومات. المقاييس الثلاثة الأولى هي المسافات: deltaX وdeltaY والمسافة الإقليدية لكل بكسل في imageA إلى البكسل الذي يحتوي على أعلى معامل ارتباط مطابق في imageB. النطاق الرابع هو قيمة معامل الارتباط لوحدة البكسل هذه [-1 : +1].
الاستخدام | المرتجعات |
---|
ee.Algorithms.CrossCorrelation(imageA, imageB, maxGap, windowSize, maxMaskedFrac) | صورة |
الوسيطة | النوع | التفاصيل |
---|
imageA | صورة | الصورة الأولى، مع N نطاقًا |
imageB | صورة | الصورة الثانية، يجب أن تحتوي على نفس عدد النطاقات التي تحتوي عليها imageA. |
maxGap | عدد صحيح | أكبر مسافة يمكن أن يتحركها البكسل في الاتجاه X أو Y |
windowSize | عدد صحيح | حجم النافذة المطلوب مقارنتها |
maxMaskedFrac | عدد عائم، القيمة التلقائية: 0 | الحد الأقصى لنسبة وحدات البكسل المسموح بإخفائها ضمن نافذة الارتباط يتم تطبيق هذا الاختبار في كل موقع إزاحة ضمن منطقة البحث. بالنسبة إلى كل إزاحة، تتم مقارنة رقع الصور المتداخلة ويتم احتساب درجة ارتباط. ويُعد البكسل ضبابيًا ضمن هذه الرقع المتداخلة إذا كانت أيّ من الرقع ضبابية في هذا الموضع. إذا لم يجتَز الاختبار أي موقع جغرافي واحد في منطقة البحث، سيتم اعتبار بكسل الناتج الذي يتم احتساب الارتباط له غير صالح، وسيتم إخفاؤه. |
إنّ محتوى هذه الصفحة مرخّص بموجب ترخيص Creative Commons Attribution 4.0 ما لم يُنصّ على خلاف ذلك، ونماذج الرموز مرخّصة بموجب ترخيص Apache 2.0. للاطّلاع على التفاصيل، يُرجى مراجعة سياسات موقع Google Developers. إنّ Java هي علامة تجارية مسجَّلة لشركة Oracle و/أو شركائها التابعين.
تاريخ التعديل الأخير: 2025-07-26 (حسب التوقيت العالمي المتفَّق عليه)
[null,null,["تاريخ التعديل الأخير: 2025-07-26 (حسب التوقيت العالمي المتفَّق عليه)"],[[["\u003cp\u003eDetermines the image registration quality between two images with the same number of bands by calculating pixel displacement and correlation.\u003c/p\u003e\n"],["\u003cp\u003eOutputs a four-band image representing deltaX, deltaY, Euclidean distance, and correlation coefficient for each pixel.\u003c/p\u003e\n"],["\u003cp\u003eUsers can define the maximum pixel shift (\u003ccode\u003emaxGap\u003c/code\u003e), comparison window size (\u003ccode\u003ewindowSize\u003c/code\u003e), and the allowed fraction of masked pixels (\u003ccode\u003emaxMaskedFrac\u003c/code\u003e).\u003c/p\u003e\n"],["\u003cp\u003eThe algorithm identifies the pixel in the second image with the highest correlation to the corresponding pixel in the first image.\u003c/p\u003e\n"],["\u003cp\u003eInvalid pixels are masked if the maximum allowed fraction of masked pixels is exceeded during correlation calculations.\u003c/p\u003e\n"]]],[],null,["# ee.Algorithms.CrossCorrelation\n\nGives information on the quality of image registration between two (theoretically) co-registered images. The input is two images with the same number of bands. This function outputs an image composed of four bands of information. The first three are distances: the deltaX, deltaY, and the Euclidean distance for each pixel in imageA to the pixel which has the highest corresponding correlation coefficient in imageB. The fourth band is the value of the correlation coefficient for that pixel \\[-1 : +1\\].\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-----------------------------------------------------------------------------------------|---------|\n| `ee.Algorithms.CrossCorrelation(imageA, imageB, maxGap, windowSize, `*maxMaskedFrac*`)` | Image |\n\n| Argument | Type | Details |\n|-----------------|-------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `imageA` | Image | First image, with N bands. |\n| `imageB` | Image | Second image, must have the same number of bands as imageA. |\n| `maxGap` | Integer | The greatest distance a pixel may shift in either X or Y. |\n| `windowSize` | Integer | Size of the window to be compared. |\n| `maxMaskedFrac` | Float, default: 0 | The maximum fraction of pixels within the correlation window that are allowed to be masked. This test is applied at each offset location within the search region. For each offset, the overlapping image patches are compared and a correlation score computed. A pixel within these overlapping patches is considered masked if either of the patches is masked there. If the test fails at any single location in the search region, the output pixel for which the correlation is being computed is considered invalid, and will be masked. |"]]