ঘোষণা :
15 এপ্রিল, 2025 এর আগে আর্থ ইঞ্জিন ব্যবহার করার জন্য নিবন্ধিত সমস্ত অবাণিজ্যিক প্রকল্পগুলিকে অবশ্যই আর্থ ইঞ্জিন অ্যাক্সেস বজায় রাখার জন্য
অ-বাণিজ্যিক যোগ্যতা যাচাই করতে হবে।
ee.Algorithms.CannyEdgeDetector
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
একটি ছবিতে ক্যানি প্রান্ত সনাক্তকরণ অ্যালগরিদম প্রয়োগ করে৷ আউটপুট হল এমন একটি চিত্র যার ব্যান্ডগুলির নাম ইনপুট ব্যান্ডগুলির মতো, এবং যেটিতে শূন্য নয় এমন মানগুলি প্রান্তগুলি নির্দেশ করে এবং মানের মাত্রা হল গ্রেডিয়েন্ট ম্যাগনিটিউড৷
ব্যবহার | রিটার্নস | ee.Algorithms.CannyEdgeDetector(image, threshold, sigma ) | ছবি |
যুক্তি | টাইপ | বিস্তারিত | image | ছবি | যে চিত্রটিতে প্রান্ত সনাক্তকরণ প্রয়োগ করতে হবে৷ |
threshold | ভাসা | থ্রেশহোল্ড মান। পিক্সেল শুধুমাত্র প্রান্ত সনাক্তকরণের জন্য বিবেচনা করা হয় যদি গ্রেডিয়েন্টের মাত্রা এই থ্রেশহোল্ডের চেয়ে বেশি হয়। |
sigma | ফ্লোট, ডিফল্ট: 1 | প্রান্ত সনাক্তকরণের আগে প্রয়োগ করা গাউসিয়ান ফিল্টারের জন্য সিগমা মান। 0 মানে কোন ফিল্টারিং প্রয়োগ করবেন না। |
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট 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\u003eIdentifies edges within an image by calculating gradient magnitude and applying a threshold.\u003c/p\u003e\n"],["\u003cp\u003eReturns an image where non-zero values represent edges, and the magnitude of the value corresponds to the gradient magnitude.\u003c/p\u003e\n"],["\u003cp\u003eOffers customization options through a threshold for gradient magnitude and a sigma value for pre-filtering.\u003c/p\u003e\n"]]],[],null,["# ee.Algorithms.CannyEdgeDetector\n\nApplies the Canny edge detection algorithm to an image. The output is an image whose bands have the same names as the input bands, and in which non-zero values indicate edges, and the magnitude of the value is the gradient magnitude.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|----------------------------------------------------------------|---------|\n| `ee.Algorithms.CannyEdgeDetector(image, threshold, `*sigma*`)` | Image |\n\n| Argument | Type | Details |\n|-------------|-------------------|---------------------------------------------------------------------------------------------------------------------------|\n| `image` | Image | The image on which to apply edge detection. |\n| `threshold` | Float | Threshold value. The pixel is only considered for edge detection if the gradient magnitude is higher than this threshold. |\n| `sigma` | Float, default: 1 | Sigma value for a gaussian filter applied before edge detection. 0 means apply no filtering. |"]]