ঘোষণা :
15 এপ্রিল, 2025 এর আগে আর্থ ইঞ্জিন ব্যবহার করার জন্য নিবন্ধিত সমস্ত অবাণিজ্যিক প্রকল্পগুলিকে অবশ্যই আর্থ ইঞ্জিন অ্যাক্সেস বজায় রাখার জন্য
অ-বাণিজ্যিক যোগ্যতা যাচাই করতে হবে।
ee.Image.medialAxis
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
ইনপুটের প্রথম ব্যান্ডের শূন্য মানযুক্ত পিক্সেলের বিচ্ছিন্ন মধ্যক অক্ষ গণনা করে। আউটপুট 4 ব্যান্ড:
মধ্যবর্তী - মধ্যবর্তী অক্ষ বিন্দু, দূরত্ব দ্বারা মাপানো।
কভারেজ - প্রতিটি মধ্যবর্তী অক্ষ বিন্দুকে সমর্থনকারী পয়েন্টের সংখ্যা।
xlabel - প্রতিটি পিক্সেলের পাওয়ার পয়েন্টের অনুভূমিক দূরত্ব।
ylabel - প্রতিটি পিক্সেলের জন্য পাওয়ার পয়েন্টের উল্লম্ব দূরত্ব।
ব্যবহার | রিটার্নস | Image. medialAxis ( neighborhood , units ) | ছবি |
যুক্তি | টাইপ | বিস্তারিত | এই: image | ছবি | ইনপুট ইমেজ. |
neighborhood | পূর্ণসংখ্যা, ডিফল্ট: 256 | পিক্সেলে আশেপাশের সাইজ। |
units | স্ট্রিং, ডিফল্ট: "পিক্সেল" | আশেপাশের ইউনিট, বর্তমানে শুধুমাত্র 'পিক্সেল' সমর্থিত। |
,ইনপুটের প্রথম ব্যান্ডের শূন্য মানযুক্ত পিক্সেলের বিচ্ছিন্ন মধ্যক অক্ষ গণনা করে। আউটপুট 4 ব্যান্ড:
মধ্যবর্তী - মধ্যবর্তী অক্ষ বিন্দু, দূরত্ব দ্বারা মাপানো।
কভারেজ - প্রতিটি মধ্যবর্তী অক্ষ বিন্দুকে সমর্থনকারী পয়েন্টের সংখ্যা।
xlabel - প্রতিটি পিক্সেলের পাওয়ার পয়েন্টের অনুভূমিক দূরত্ব।
ylabel - প্রতিটি পিক্সেলের জন্য পাওয়ার পয়েন্টের উল্লম্ব দূরত্ব।
ব্যবহার | রিটার্নস | Image. medialAxis ( neighborhood , units ) | ছবি |
যুক্তি | টাইপ | বিস্তারিত | এই: image | ছবি | ইনপুট ইমেজ. |
neighborhood | পূর্ণসংখ্যা, ডিফল্ট: 256 | পিক্সেলে আশেপাশের সাইজ। |
units | স্ট্রিং, ডিফল্ট: "পিক্সেল" | আশেপাশের ইউনিট, বর্তমানে শুধুমাত্র 'পিক্সেল' সমর্থিত। |
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট 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\u003eComputes the discrete medial axis transform of the zero-valued pixels in the first band of an image.\u003c/p\u003e\n"],["\u003cp\u003eOutputs a 4-band image representing medial axis points, their support, and distances to power points.\u003c/p\u003e\n"],["\u003cp\u003eAccepts an input image, neighborhood size, and units as parameters for customization.\u003c/p\u003e\n"]]],["This function calculates the discrete medial axis of an image's zero-valued pixels. It returns an image with four bands: `medial` (medial axis points scaled by distance), `coverage` (number of supporting points), `xlabel` (horizontal distance to the power point), and `ylabel` (vertical distance to the power point). The function accepts an input image, neighborhood size (default: 256 pixels), and units (only 'pixels' supported). It is called using `Image.medialAxis()`.\n"],null,["# ee.Image.medialAxis\n\nComputes the discrete medial axis of the zero valued pixels of the first band of the input. Outputs 4 bands:\n\n\u003cbr /\u003e\n\nmedial - the medial axis points, scaled by the distance.\n\ncoverage - the number of points supporting each medial axis point.\n\nxlabel - the horizontal distance to the power point for each pixel.\n\nylabel - the vertical distance to the power point for each pixel.\n\n| Usage | Returns |\n|--------------------------------------------------|---------|\n| Image.medialAxis`(`*neighborhood* `, `*units*`)` | Image |\n\n| Argument | Type | Details |\n|----------------|---------------------------|-----------------------------------------------------------------------|\n| this: `image` | Image | The input image. |\n| `neighborhood` | Integer, default: 256 | Neighborhood size in pixels. |\n| `units` | String, default: \"pixels\" | The units of the neighborhood, currently only 'pixels' are supported. |"]]