#include <dlrComputerVision/image.h>
#include <limits>
#include <list>
#include <dlrComputerVision/filter.h>
#include <dlrComputerVision/kernels.h>
#include <dlrComputerVision/nonMaximumSuppress.h>
#include <dlrComputerVision/sobel.h>
#include <dlrComputerVision/utilities.h>
#include <dlrNumeric/index2D.h>
#include <dlrNumeric/utilities.h>
Go to the source code of this file.
Namespaces | |
| namespace | dlr::computerVision |
| This namespace is still in the early stages of development. | |
Functions | |
| template<ImageFormat FORMAT> | |
| Image< GRAY1 > | dlr::computerVision::applyCanny (const Image< FORMAT > &inputImage, size_t gaussianSize=5, double upperThreshold=0.0, double lowerThreshold=0.0, double autoUpperThresholdFactor=3.0, double autoLowerThresholdFactor=0.0) |
| This function applies the canny edge detector to the input image. | |
Copyright (C) 2006 David LaRose, dlr@cs.cmu.edu See accompanying file, LICENSE.TXT, for details.
Definition in file canny.h.
1.5.8