AlgoPlus v0.1.0
Loading...
Searching...
No Matches
Namespace List
Here is a list of all documented namespaces with brief descriptions:
[detail level 12]
 Navg_filterAverage filter namespace
 NdetailDetail namespace with internal helper functions
 Ndtoa_implImplements the Grisu2 algorithm for binary to decimal floating-point conversion
 Ngaussian_filterGaussian filter namespace
 Nmedian_filterMedian_filter namespace
 NmetricsLosses namespace that contains a couple of useful losses in machine learning
 NprewittPrewitt operator is used for edge detection. It creates 2 3x3 arrays G_x and G_y and apply them to an image A(G_x * A, G_y * A). After that, the resulting image with edge detection is G = sqrt(G_x^2 + G_y^2). It's almost the same as the sobel operator, but with a different mask
 Nsharpening_filterSharpening_filter namespace
 NsobelSobel operator is used for edge detection. It creates 2 3x3 arrays G_x and G_y and apply them to an image A(G_x * A, G_y * A). After that, the resulting image with edge detection is G = sqrt(G_x^2 + G_y^2)