お知らせ :
2025 年 4 月 15 日 より前に Earth Engine の使用を登録したすべての非商用プロジェクトは、Earth Engine へのアクセスを維持するために
非商用目的での利用資格を確認 する必要があります。
フィードバックを送信
ee.ImageCollection.qualityMosaic
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
品質帯域をピクセル単位の順序付け関数として使用して、コレクション内のすべての画像を合成します。
用途 戻り値 ImageCollection. qualityMosaic (qualityBand)
画像
引数 タイプ 詳細 これ: collection
ImageCollection モザイク化するコレクション。 qualityBand
文字列 コレクション内の品質帯域の名前。
例
コードエディタ(JavaScript)
// The goal is to generate a best-pixel mosaic from a collection of
// Sentinel-2 images where pixel quality is based on a cloud probability score.
// The qualityMosaic() function selects the image (per-pixel) with the HIGHEST
// quality-band-score to contribute to the resulting mosaic. All bands from the
// selected image (per-pixel) associated with the HIGHEST quality-band-score
// are included in the output.
// A Sentinel-2 SR image collection (2 months of images at a specific point).
var col = ee . ImageCollection ( 'COPERNICUS/S2_SR_HARMONIZED' )
. filterBounds ( ee . Geometry . Point ( - 103.19 , 40.14 ))
. filterDate ( '2020-07-01' , '2020-09-01' );
// Because cloud probability ranges from 0 to 100 percent (low to high), we need
// to invert the MSK_CLDPRB band values so that low cloud probability pixels
// indicate high quality. Here, an inverting function is mapped over the
// image collection, the inverted MSK_CLDPRB band is added as a "quality" band.
col = col . map ( function ( img ) {
var cldProb = img . select ( 'MSK_CLDPRB' );
var cldProbInv = cldProb . multiply ( - 1 ). rename ( 'quality' );
return img . addBands ( cldProbInv );
});
// Image visualization settings.
var visParams = {
bands : [ 'B4' , 'B3' , 'B2' ],
min : 0 ,
max : 4500
};
Map . setCenter ( - 103.19 , 40.14 , 9 );
Map . addLayer ( col , visParams , 'Collection (for series inspection)' , false );
// Generate a best-pixel mosaic from the image collection.
var img = col . qualityMosaic ( 'quality' );
Map . addLayer ( img , visParams , 'Best-pixel mosaic (by cloud score)' );
// To build the worst-pixel mosaic, according to cloud probability, use the
// MSK_CLDPRB band as the quality band (the worst pixels have HIGHEST cloud
// probability score).
var img = col . qualityMosaic ( 'MSK_CLDPRB' );
Map . addLayer ( img , visParams , 'Worst-pixel mosaic (by cloud score)' , false );
Python の設定
Python API とインタラクティブな開発での geemap
の使用については、
Python 環境 のページをご覧ください。
import ee
import geemap.core as geemap
Colab(Python)
# The goal is to generate a best-pixel mosaic from a collection of
# Sentinel-2 images where pixel quality is based on a cloud probability score.
# The qualityMosaic() function selects the image (per-pixel) with the HIGHEST
# quality-band-score to contribute to the resulting mosaic. All bands from the
# selected image (per-pixel) associated with the HIGHEST quality-band-score
# are included in the output.
# A Sentinel-2 SR image collection (2 months of images at a specific point).
col = (
ee . ImageCollection ( 'COPERNICUS/S2_SR_HARMONIZED' )
. filterBounds ( ee . Geometry . Point ( - 103.19 , 40.14 ))
. filterDate ( '2020-07-01' , '2020-09-01' )
)
# Because cloud probability ranges from 0 to 100 percent (low to high), we need
# to invert the MSK_CLDPRB band values so that low cloud probability pixels
# indicate high quality. Here, an inverting function is mapped over the
# image collection, the inverted MSK_CLDPRB band is added as a "quality" band.
def invertCloudProbabilityBand ( img ):
cldProb = img . select ( 'MSK_CLDPRB' )
cldProbInv = cldProb . multiply ( - 1 ) . rename ( 'quality' )
return img . addBands ( cldProbInv )
col = col . map ( invertCloudProbabilityBand )
# Image visualization settings.
vis_params = { 'bands' : [ 'B4' , 'B3' , 'B2' ], 'min' : 0 , 'max' : 4500 }
m = geemap . Map ()
m . set_center ( - 103.19 , 40.14 , 9 )
m . add_layer ( col , vis_params , 'Collection (for series inspection)' , False )
# Generate a best-pixel mosaic from the image collection.
img = col . qualityMosaic ( 'quality' )
m . add_layer ( img , vis_params , 'Best-pixel mosaic (by cloud score)' )
# To build the worst-pixel mosaic, according to cloud probability, use the
# MSK_CLDPRB band as the quality band (the worst pixels have HIGHEST cloud
# probability score).
img = col . qualityMosaic ( 'MSK_CLDPRB' )
m . add_layer ( img , vis_params , 'Worst-pixel mosaic (by cloud score)' , False )
m
フィードバックを送信
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンス により使用許諾されます。コードサンプルは Apache 2.0 ライセンス により使用許諾されます。詳しくは、Google Developers サイトのポリシー をご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-26 UTC。
ご意見をお聞かせください
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["必要な情報がない","missingTheInformationINeed","thumb-down"],["複雑すぎる / 手順が多すぎる","tooComplicatedTooManySteps","thumb-down"],["最新ではない","outOfDate","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["サンプル / コードに問題がある","samplesCodeIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2025-07-26 UTC。"],[[["\u003cp\u003e\u003ccode\u003equalityMosaic()\u003c/code\u003e composites images in a collection based on a specified quality band, selecting the highest quality pixel for each location in the output mosaic.\u003c/p\u003e\n"],["\u003cp\u003eThe 'quality band' is a band within the image collection that represents the desired quality metric (e.g., cloud probability, NDVI).\u003c/p\u003e\n"],["\u003cp\u003eThe function returns a single image where each pixel is chosen from the input image with the highest value in the quality band at that location.\u003c/p\u003e\n"],["\u003cp\u003eYou can manipulate the quality band (e.g., inverting cloud probability) to prioritize different pixel selection criteria.\u003c/p\u003e\n"]]],[],null,[]]