Auto-thresholding Canny Edge Detection

It can find edge detection of an image without giving any other parameter (like threshold)

You are now following this Submission

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 .

General Information

MATLAB Release Compatibility

  • Compatible with any release

Platform Compatibility

  • Windows
  • macOS
  • Linux
Version Published Release Notes Action
1.0.0.0

Readme update

Description update
Description Picture
Data set reference address
Description update