הודעה: כל הפרויקטים הלא מסחריים שנרשמו לשימוש ב-Earth Engine לפני 15 באפריל 2025 חייבים לעבור אימות של הזכאות לשימוש לא מסחרי כדי לשמור על הגישה ל-Earth Engine.
קל לארגן דפים בעזרת אוספים
אפשר לשמור ולסווג תוכן על סמך ההעדפות שלך.
אלגוריתם שמחזיר תמונה זהה לארגומנט שלו, אבל משתמש באינטרפולציה דו-לינארית או דו-קובית (במקום בשיטת השכן הקרוב שמוגדרת כברירת מחדל) כדי לחשב פיקסלים בהטלות שאינן ההטלה המקורית שלו או ברמות אחרות של אותה פירמידת תמונה.
השיטה הזו מסתמכת על כך שההטלה שמוגדרת כברירת מחדל בתמונת הקלט היא בעלת משמעות, ולכן אי אפשר להשתמש בה בתמונות מורכבות, למשל. (במקום זאת, צריך לבצע דגימה מחדש של התמונות שמשמשות ליצירת התמונה המורכבת).
שימוש
החזרות
Image.resample(mode)
תמונה
ארגומנט
סוג
פרטים
זה: image
תמונה
התמונה לשינוי גודל הדגימה.
mode
מחרוזת, ברירת מחדל: bilinear
מצב האינטרפולציה שבו רוצים להשתמש. אחת מהאפשרויות: bilinear או bicubic.
[[["התוכן קל להבנה","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)."],[[["Resamples an image using bilinear or bicubic interpolation, resulting in an identical image but with different pixel computation for projections and pyramid levels."],["Relies on the input image's inherent projection and is unsuitable for composite images, which require individual component resampling."],["Offers 'bilinear' and 'bicubic' as interpolation modes, impacting how pixel values are calculated during resampling."],["The function `Image.resample()` takes the image and the desired interpolation mode as input and returns the resampled image."]]],["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"]]