Auto-thresholding Canny Edge Detection
Edge_Detection_Autothreshold generates the auto thresholding canny edge detection image output. Usually, for using Canny Edge Detection, we have to input an image and other parameters (i.e threshold). But, with this function, we just have to input the image, no need to input the threshold value.
[image_output] = Edge_Detection_Autothreshold(I)
Input parameter
I: input single image
Output parameter
image_output: image which has the same size as input image
Example:
I = imread(input3.jpg);
output = Edge_Detection_Autothreshold(I);
imshow(output);
We have to put the input image first to the directory.
Use "demo.m" for example to use the function
For Dataset, I got Images from https://pixabay.com/
Cite As
Aditya Wildan Farras (2026). Auto-thresholding Canny Edge Detection (https://www.mathworks.com/matlabcentral/fileexchange/61237-auto-thresholding-canny-edge-detection), MATLAB Central File Exchange. Retrieved .
MATLAB Release Compatibility
Platform Compatibility
Windows macOS LinuxCategories
- Image Processing and Computer Vision > Image Processing Toolbox > Image Segmentation and Analysis > Object Analysis >
Tags
Discover Live Editor
Create scripts with code, output, and formatted text in a single executable document.
Edge_Detection_Autothreshold/
| Version | Published | Release Notes | |
|---|---|---|---|
| 1.0.0.0 | Readme update Description update
|