Earth Engine は、共有コンピューティングリソースを保護し、すべてのユーザーに信頼性の高いパフォーマンスを提供するために、
非商用割り当て階層を導入しています。非商用プロジェクトではデフォルトでコミュニティ
ティアが使用されますが、プロジェクトのティアはいつでも変更できます。
Google uses AI technology to translate content into your preferred language. AI translations can contain errors.
ee.Image.resample
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
引数と同じ画像を返しますが、ネイティブ投影以外の投影や同じ画像ピラミッドの他のレベルのピクセルを計算する際に、デフォルトの最近傍補間ではなく双線形補間または双三次補間を使用するアルゴリズム。
これは、入力画像のデフォルトの投影が意味のあるものであることを前提としているため、合成画像などには使用できません。(代わりに、合成画像の作成に使用する画像をリサンプリングする必要があります)。
| 用途 | 戻り値 |
|---|
Image.resample(mode) | 画像 |
| 引数 | タイプ | 詳細 |
|---|
this: image | 画像 | リサンプリングする画像。 |
mode | 文字列、デフォルト: "bilinear" | 使用する補間モード。'bilinear' または 'bicubic' のいずれか。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2026-04-20 UTC。
[null,null,["最終更新日 2026-04-20 UTC。"],[],["The algorithm resamples an input image using either bilinear or bicubic interpolation, departing from the default nearest-neighbor method. This is applied when calculating pixels in projections outside the image's native projection or in different levels of the image pyramid. The input image must have a meaningful default projection; therefore, it cannot be used on composites. The function, `Image.resample(mode)`, accepts an `Image` and a `mode` string (\"bilinear\" or \"bicubic\") as arguments, and returns a resampled `Image`.\n"]]