Pengumuman: Semua project nonkomersial yang terdaftar untuk menggunakan Earth Engine sebelum
15 April 2025 harus
memverifikasi kelayakan nonkomersial untuk mempertahankan akses Earth Engine.
ee.Image.register
Tetap teratur dengan koleksi
Simpan dan kategorikan konten berdasarkan preferensi Anda.
Mendaftarkan gambar ke gambar referensi sambil memungkinkan deformasi lembaran karet lokal. Perpindahan dihitung dalam CRS gambar referensi, pada skala yang ditentukan oleh resolusi terendah dari tiga proyeksi berikut: proyeksi gambar input, proyeksi gambar referensi, dan proyeksi yang diminta. Kemudian, pergeseran diterapkan ke gambar input untuk mendaftarkannya dengan referensi.
Penggunaan | Hasil |
---|
Image.register(referenceImage, maxOffset, patchWidth, stiffness) | Gambar |
Argumen | Jenis | Detail |
---|
ini: image | Gambar | Gambar yang akan didaftarkan. |
referenceImage | Gambar | Gambar yang akan didaftarkan. |
maxOffset | Float | Offset maksimum yang diizinkan saat mencoba menyelaraskan gambar input, dalam meter. Menggunakan nilai yang lebih kecil dapat mengurangi waktu komputasi secara signifikan, tetapi nilainya harus tetap cukup besar untuk mencakup perpindahan terbesar dalam seluruh wilayah gambar. |
patchWidth | Float, default: null | Ukuran patch untuk mendeteksi offset gambar, dalam meter. Nilai ini harus ditetapkan cukup besar untuk merekam tekstur, serta cukup besar sehingga objek yang dapat diabaikan berukuran kecil dalam patch. Default-nya adalah null. Ukuran patch akan ditentukan secara otomatis jika tidak diberikan. |
stiffness | Float, default: 5 | Menerapkan batasan kekakuan pada solusi. Nilai yang valid berada dalam rentang [0,10]. Kekakuan digunakan untuk penolakan outlier saat menentukan perpindahan pada titik petak yang berdekatan. Nilai yang lebih tinggi menggerakkan solusi menuju transformasi yang kaku. Nilai yang lebih rendah memungkinkan lebih banyak distorsi atau perubahan bentuk gambar selama pendaftaran. |
Kecuali dinyatakan lain, konten di halaman ini dilisensikan berdasarkan Lisensi Creative Commons Attribution 4.0, sedangkan contoh kode dilisensikan berdasarkan Lisensi Apache 2.0. Untuk mengetahui informasi selengkapnya, lihat Kebijakan Situs Google Developers. Java adalah merek dagang terdaftar dari Oracle dan/atau afiliasinya.
Terakhir diperbarui pada 2025-07-26 UTC.
[null,null,["Terakhir diperbarui pada 2025-07-26 UTC."],[[["\u003cp\u003eRegisters an image to a reference image using local, rubber sheet deformations, allowing for flexible alignment.\u003c/p\u003e\n"],["\u003cp\u003eDisplacements are calculated in the reference image's Coordinate Reference System (CRS) and scaled based on the lowest resolution among the input, reference, and requested projections.\u003c/p\u003e\n"],["\u003cp\u003eUsers can control the maximum allowed offset for alignment and optionally specify patch size and stiffness for fine-tuning the registration process.\u003c/p\u003e\n"],["\u003cp\u003eThe function returns a registered image aligned with the reference image based on the computed displacements.\u003c/p\u003e\n"]]],["The `register` function aligns an input image to a reference image, accommodating local deformations. It computes displacements in the reference image's coordinate system at the lowest resolution of the input, reference, and requested projections. Key parameters include `maxOffset` (maximum allowed displacement), `patchWidth` (patch size for offset detection), and `stiffness` (controls image warping). The function then applies the computed displacements to the input image, returning the registered image.\n"],null,["# ee.Image.register\n\nRegisters an image to a reference image while allowing local, rubber sheet deformations. Displacements are computed in the CRS of the reference image, at a scale dictated by the lowest resolution of the following three projections: input image projection, reference image projection, and requested projection. The displacements then applied to the input image to register it with the reference.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-----------------------------------------------------------------------------|---------|\n| Image.register`(referenceImage, maxOffset, `*patchWidth* `, `*stiffness*`)` | Image |\n\n| Argument | Type | Details |\n|------------------|----------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| this: `image` | Image | The image to register. |\n| `referenceImage` | Image | The image to register to. |\n| `maxOffset` | Float | The maximum offset allowed when attempting to align the input images, in meters. Using a smaller value can reduce computation time significantly, but it must still be large enough to cover the greatest displacement within the entire image region. |\n| `patchWidth` | Float, default: null | Patch size for detecting image offsets, in meters. This should be set large enough to capture texture, as well as large enough that ignorable objects are small within the patch. Default is null. Patch size will be determined automatically if notprovided. |\n| `stiffness` | Float, default: 5 | Enforces a stiffness constraint on the solution. Valid values are in the range \\[0,10\\]. The stiffness is used for outlier rejection when determining displacements at adjacent grid points. Higher values move the solution towards a rigid transformation. Lower values allow more distortion or warping of the image during registration. |"]]