ঘোষণা :
15 এপ্রিল, 2025 এর আগে আর্থ ইঞ্জিন ব্যবহার করার জন্য নিবন্ধিত সমস্ত অবাণিজ্যিক প্রকল্পগুলিকে অবশ্যই আর্থ ইঞ্জিন অ্যাক্সেস বজায় রাখার জন্য
অ-বাণিজ্যিক যোগ্যতা যাচাই করতে হবে।
ee.Image.resample
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
একটি অ্যালগরিদম যা তার যুক্তির সাথে অভিন্ন একটি চিত্র ফেরত দেয়, কিন্তু যা তার নেটিভ প্রজেকশন বা একই চিত্র পিরামিডের অন্যান্য স্তরের অনুমানে পিক্সেলগুলি গণনা করতে দ্বিলিনিয়ার বা বাইকিউবিক ইন্টারপোলেশন (ডিফল্ট নিকটতম-প্রতিবেশীর পরিবর্তে) ব্যবহার করে।
এটি ইনপুট চিত্রের ডিফল্ট প্রজেকশন অর্থপূর্ণ হওয়ার উপর নির্ভর করে এবং তাই কম্পোজিটগুলিতে ব্যবহার করা যাবে না, উদাহরণস্বরূপ। (পরিবর্তে, আপনি কম্পোজিট তৈরি করতে ব্যবহৃত চিত্রগুলি পুনরায় নমুনা করা উচিত।)
ব্যবহার | রিটার্নস | Image. resample ( mode ) | ছবি |
যুক্তি | টাইপ | বিস্তারিত | এই: image | ছবি | চিত্রটি পুনরায় নমুনা করার জন্য। |
mode | স্ট্রিং, ডিফল্ট: "বাইলিনিয়ার" | ইন্টারপোলেশন মোড ব্যবহার করতে হবে। 'বাইলিনিয়ার' বা 'বাইকিউবিক'-এর একটি। |
,একটি অ্যালগরিদম যা তার যুক্তির সাথে অভিন্ন একটি চিত্র ফেরত দেয়, কিন্তু যা তার নেটিভ প্রজেকশন বা একই চিত্র পিরামিডের অন্যান্য স্তরের অনুমানে পিক্সেলগুলি গণনা করতে দ্বিলিনিয়ার বা বাইকিউবিক ইন্টারপোলেশন (ডিফল্ট নিকটতম-প্রতিবেশীর পরিবর্তে) ব্যবহার করে।
এটি ইনপুট চিত্রের ডিফল্ট প্রজেকশন অর্থপূর্ণ হওয়ার উপর নির্ভর করে এবং তাই কম্পোজিটগুলিতে ব্যবহার করা যাবে না, উদাহরণস্বরূপ। (পরিবর্তে, আপনি কম্পোজিট তৈরি করতে ব্যবহৃত চিত্রগুলি পুনরায় নমুনা করা উচিত।)
ব্যবহার | রিটার্নস | Image. resample ( mode ) | ছবি |
যুক্তি | টাইপ | বিস্তারিত | এই: image | ছবি | চিত্রটি পুনরায় নমুনা করার জন্য। |
mode | স্ট্রিং, ডিফল্ট: "বাইলিনিয়ার" | ইন্টারপোলেশন মোড ব্যবহার করতে হবে। 'বাইলিনিয়ার' বা 'বাইকিউবিক'-এর একটি। |
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["\u003cp\u003eResamples an image using bilinear or bicubic interpolation, resulting in an identical image but with different pixel computation for projections and pyramid levels.\u003c/p\u003e\n"],["\u003cp\u003eRelies on the input image's inherent projection and is unsuitable for composite images, which require individual component resampling.\u003c/p\u003e\n"],["\u003cp\u003eOffers 'bilinear' and 'bicubic' as interpolation modes, impacting how pixel values are calculated during resampling.\u003c/p\u003e\n"],["\u003cp\u003eThe function \u003ccode\u003eImage.resample()\u003c/code\u003e takes the image and the desired interpolation mode as input and returns the resampled image.\u003c/p\u003e\n"]]],["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"],null,["# ee.Image.resample\n\nAn algorithm that returns an image identical to its argument, but which uses bilinear or bicubic interpolation (rather than the default nearest-neighbor) to compute pixels in projections other than its native projection or other levels of the same image pyramid.\n\n\u003cbr /\u003e\n\nThis relies on the input image's default projection being meaningful, and so cannot be used on composites, for example. (Instead, you should resample the images that are used to create the composite.)\n\n| Usage | Returns |\n|----------------------------|---------|\n| Image.resample`(`*mode*`)` | Image |\n\n| Argument | Type | Details |\n|---------------|-----------------------------|----------------------------------------------------------------|\n| this: `image` | Image | The Image to resample. |\n| `mode` | String, default: \"bilinear\" | The interpolation mode to use. One of 'bilinear' or 'bicubic'. |"]]