Duyuru:
15 Nisan 2025'ten önce Earth Engine'i kullanmak için kaydedilen tüm ticari olmayan projelerin Earth Engine erişimini sürdürmek için
ticari olmayan uygunluğu doğrulaması gerekir.
ee.Image.reduceResolution
Koleksiyonlar ile düzeninizi koruyun
İçeriği tercihlerinize göre kaydedin ve kategorilere ayırın.
Her çıkış pikseline karşılık gelen tüm giriş piksellerini birleştirmek için verilen küçültücüyü kullanarak yeniden projeksiyonu etkinleştirir. Küçültücü tek bir girişe sahipse koleksiyonun her bandına ayrı ayrı uygulanır. Aksi takdirde, giriş görüntüsünün bant sayısı kadar girişi olmalıdır.
Küçültücü çıkış adları, çıkış bantlarının adlarını belirler: Birden fazla girişi olan küçültücüler çıkış adlarını doğrudan kullanır, tek girişi ve tek çıkışı olan küçültücüler giriş bandı adlarını korur, tek girişi ve birden fazla çıkışı olan küçültücüler ise çıkış adının önüne giriş bandı adını ekler (ör. "10_mean", "10_stdDev", "20_mean", "20_stdDev").
Küçültücü giriş ağırlıkları, giriş maskesinin ve giriş pikseli tarafından kapsanan çıkış pikselinin kesrinin çarpımı olur.
Kullanım | İadeler |
---|
Image.reduceResolution(reducer, bestEffort, maxPixels) | Resim |
Bağımsız Değişken | Tür | Ayrıntılar |
---|
bu: image | Resim | Giriş resmi. |
reducer | Azaltıcı | Pikselleri birleştirmek için uygulanacak küçültücü. |
bestEffort | Boole değeri, varsayılan: false | Girişi varsayılan çözünürlüğünde kullanmak için çok fazla piksel gerekiyorsa işlemi başarılı bir şekilde tamamlamaya olanak tanıyan bir piramit düzeyinden önceden azaltılmış giriş pikselleriyle başlayın. |
maxPixels | Tamsayı, varsayılan: 64 | Her çıkış pikseli için birleştirilecek maksimum giriş pikseli sayısı. Bu değerin çok yüksek ayarlanması, bellek yetersizliği sorunlarına neden olur. |
Aksi belirtilmediği sürece bu sayfanın içeriği Creative Commons Atıf 4.0 Lisansı altında ve kod örnekleri Apache 2.0 Lisansı altında lisanslanmıştır. Ayrıntılı bilgi için Google Developers Site Politikaları'na göz atın. Java, Oracle ve/veya satış ortaklarının tescilli ticari markasıdır.
Son güncelleme tarihi: 2025-07-26 UTC.
[null,null,["Son güncelleme tarihi: 2025-07-26 UTC."],[[["\u003cp\u003eThis operation reprojects images using a reducer to combine input pixels for each output pixel, applying it per band or across bands based on reducer input.\u003c/p\u003e\n"],["\u003cp\u003eOutput band names are determined by the reducer's output names, sometimes preserving, prefixing, or directly using them.\u003c/p\u003e\n"],["\u003cp\u003eInput pixel weights are calculated using input mask and fractional output pixel coverage.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003ereduceResolution\u003c/code\u003e method takes an image, reducer, and optional parameters for handling large operations, returning a reprojected image.\u003c/p\u003e\n"],["\u003cp\u003eOptional parameters \u003ccode\u003ebestEffort\u003c/code\u003e and \u003ccode\u003emaxPixels\u003c/code\u003e control memory usage and allow for processing large images by adjusting input resolution and pixel combination limits.\u003c/p\u003e\n"]]],[],null,["# ee.Image.reduceResolution\n\nEnables reprojection using the given reducer to combine all input pixels corresponding to each output pixel. If the reducer has a single input, it will be applied separately to each band of the collection; otherwise it must have the same number of inputs as the input image has bands.\n\n\u003cbr /\u003e\n\nThe reducer output names determine the names of the output bands: reducers with multiple inputs will use the output names directly, reducers with a single input and single output will preserve the input band names, and reducers with a single input and multiple outputs will prefix the output name with the input band name (e.g., '10_mean', '10_stdDev', '20_mean', '20_stdDev').\n\nReducer input weights will be the product of the input mask and the fraction of the output pixel covered by the input pixel.\n\n| Usage | Returns |\n|-------------------------------------------------------------------|---------|\n| Image.reduceResolution`(reducer, `*bestEffort* `, `*maxPixels*`)` | Image |\n\n| Argument | Type | Details |\n|---------------|-------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| this: `image` | Image | The input image. |\n| `reducer` | Reducer | The reducer to apply to be used for combining pixels. |\n| `bestEffort` | Boolean, default: false | If using the input at its default resolution would require too many pixels, start with already-reduced input pixels from a pyramid level that allows the operation to succeed. |\n| `maxPixels` | Integer, default: 64 | The maximum number of input pixels to combine for each output pixel. Setting this too large will cause out-of-memory problems. |"]]