[[["이해하기 쉬움","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"]]