|
oevislib_net
0.14.3.0
|
Functions | |
| Image | oevislib_net.Image.Dilate (KernelShape inKernelShape, int inRadiusX, Optional< int > inRadiusY, Optional< Region > inRoi, Optional< Region > inSourceRoi, Optional< Pixel > inBorderColor, Optional< Region > outKernel) |
| Computes a dilation of the image using a specific kernel. | |
| Image | oevislib_net.Image.Dilate (Region inKernel, Point2Di inKernelAnchor, Optional< Region > inRoi, Optional< Region > inSourceRoi, Optional< Pixel > inBorderColor) |
| Computes a dilation of the image using a Region as kernel. | |
| Image | oevislib_net.Image.Dilate (MorphologyKernel inKernel, Optional< Region > inRoi=null) |
| Computes a dilation of the image using a predefined kernel. | |
| Image | oevislib_net.Image.Erode (KernelShape inKernelShape, int inRadiusX, Optional< int > inRadiusY, Optional< Region > inRoi, Optional< Region > inSourceRoi, Optional< Pixel > inBorderColor, Optional< Region > outKernel) |
| Computes an erosion of the image using a specific kernel. | |
| Image | oevislib_net.Image.Erode (Region inKernel, Point2Di inKernelAnchor, Optional< Region > inRoi, Optional< Region > inSourceRoi, Optional< Pixel > inBorderColor) |
| Computes an erosion of the image using a Region as kernel. | |
| Image | oevislib_net.Image.Erode (MorphologyKernel inKernel, Optional< Region > inRoi=null) |
| Computes an erosion of the image using a predefined kernel. | |
| void | oevislib_net.Image.DilateAndErode (Image outDilated, Image outEroded, KernelShape inKernelShape, int inRadiusX, Optional< int > inRadiusY, Optional< Region > inRoi, Optional< Region > inSourceRoi, Optional< Pixel > inBorderColor) |
| Computes dilation and erosion on the image simultaneously (faster than the two separate operations). | |
| void | oevislib_net.Image.DilateErodeAndAverage (Image outDilated, Image outEroded, Image outAveraged, KernelShape inKernelShape, int inRadiusX, Optional< int > inRadiusY, Optional< Region > inRoi, Optional< Region > inSourceRoi, Optional< Pixel > inBorderColor) |
| Computes dilation, erosion and average simultaneously (faster execution). | |
| Image | oevislib_net.Image.Open (KernelShape inKernelShape, int inRadiusX, Optional< int > inRadiusY, Optional< Region > inRoi, Optional< Region > inSourceRoi, Optional< Pixel > inBorderColor, Optional< Region > outKernel) |
| Computes the opening of the image using a specific kernel. | |
| Image | oevislib_net.Image.Open (MorphologyKernel inKernel, Optional< Region > inRoi=null, Optional< Pixel > inBorderColor=null) |
| Computes the opening of the image using a predefined kernel. | |
| Image | oevislib_net.Image.Open (Region inKernel, Point2Di inKernelAnchor, Optional< Region > inRoi, Optional< Region > inSourceRoi, Optional< Pixel > inBorderColor) |
| Computes the opening of the image using a Region as kernel. | |
| Image | oevislib_net.Image.Close (KernelShape inKernelShape, int inRadiusX, Optional< int > inRadiusY, Optional< Region > inRoi, Optional< Region > inSourceRoi, Optional< Pixel > inBorderColor, Optional< Region > outKernel) |
| Computes the closing of the image using a specific kernel. | |
| Image | oevislib_net.Image.Close (MorphologyKernel inKernel, Optional< Region > inRoi=null, Optional< Pixel > inBorderColor=null) |
| Computes the closing of the image using a predefined kernel. | |
| Image | oevislib_net.Image.Close (Region inKernel, Point2Di inKernelAnchor, Optional< Region > inRoi, Optional< Region > inSourceRoi, Optional< Pixel > inBorderColor) |
| Computes the closing of the image using a Region as kernel. | |
| Image | oevislib_net.Image.TopHat (KernelShape inKernelShape, int inRadiusX, Optional< int > inRadiusY, Optional< Region > inRoi, Optional< Region > inSourceRoi, Optional< Pixel > inBorderColor, Optional< Region > outKernel) |
| Computes the top hat of the image using a specific kernel. | |
| Image | oevislib_net.Image.TopHat (MorphologyKernel inKernel, Optional< Region > inRoi=null, Optional< Pixel > inBorderColor=null) |
| Computes the top hat of the image using a predefined kernel. | |
| Image | oevislib_net.Image.TopHat (Region inKernel, Point2Di inKernelAnchor, Optional< Region > inRoi, Optional< Region > inSourceRoi, Optional< Pixel > inBorderColor) |
| Computes the bottom hat of the image using a Region as kernel. | |
| Image | oevislib_net.Image.BottomHat (KernelShape inKernelShape, int inRadiusX, Optional< int > inRadiusY, Optional< Region > inRoi, Optional< Region > inSourceRoi, Optional< Pixel > inBorderColor, Optional< Region > outKernel) |
| Computes the bottom hat of the image using a specific kernel. | |
| Image | oevislib_net.Image.BottomHat (MorphologyKernel inKernel, Optional< Region > inRoi=null, Optional< Pixel > inBorderColor=null) |
| Computes the bottom hat of the image using a predefined kernel. | |
| Image | oevislib_net.Image.BottomHat (Region inKernel, Point2Di inKernelAnchor, Optional< Region > inRoi, Optional< Region > inSourceRoi, Optional< Pixel > inBorderColor) |
| Computes the bottom hat of the image using a Region as kernel. | |
| Image | oevislib_net.Image.HitAndMiss (Region inHitKernel, Region inMissKernel) |
| Apply the Hit&Miss kernel to the image. | |
| Image | oevislib_net.Image.Prune (int inMaxLength) |
| Prune the image. | |
|
inline |
Computes the bottom hat of the image using a specific kernel.
Represents the difference between the image and its opened version.
| inKernelShape | Kernel shape. |
| inRadiusX | Kernel's radius on the X axis. Range: [0, +inf). |
| inRadiusY | Kernel's radius on the Y axis (equal to inRadiusX if not specified). Range: [0, +inf). |
| inRoi | Range of pixels to be updated in the output image. |
| inSourceRoi | Range of pixels to be considered in the transformation process. |
| inBorderColor | Pixels' value outside the image boundaries. |
| outKernel | Kernel region used. |
|
inline |
Computes the bottom hat of the image using a predefined kernel.
Represents the difference between the image and its opened version.
| inKernel | Kernel. |
| inRoi | Range of pixels to be updated in the output image. |
| inBorderColor | Pixels' value outside the image boundaries. |
|
inline |
Computes the bottom hat of the image using a Region as kernel.
Represents the difference between the image and its opened version.
| inKernel | Kernel region. |
| inKernelAnchor | A point inside inKernel that defines its center. |
| inRoi | Range of pixels to be updated in the output image. |
| inSourceRoi | Range of pixels to be considered in the transformation process. |
| inBorderColor | Pixels' value outside the image boundaries. |
|
inline |
Computes the closing of the image using a specific kernel.
Removes small holes and fills in small gaps in the image applying consecutive dilation and erosion.
| inKernelShape | Kernel shape. |
| inRadiusX | Kernel's radius on the X axis. Range: [0, +inf). |
| inRadiusY | Kernel's radius on the Y axis (equal to inRadiusX if not specified). Range: [0, +inf). |
| inRoi | Range of pixels to be updated in the output image. |
| inSourceRoi | Range of pixels to be considered in the transformation process. |
| inBorderColor | Pixels' value outside the image boundaries. |
| outKernel | Kernel region used. |
|
inline |
Computes the closing of the image using a predefined kernel.
Removes small holes and fills in small gaps in the image applying consecutive dilation and erosion.
| inKernel | Kernel. |
| inRoi | Range of pixels to be updated in the output image. |
| inBorderColor | Pixels' value outside the image boundaries. |
|
inline |
Computes the closing of the image using a Region as kernel.
Removes small holes and fills in small gaps in the image applying consecutive dilation and erosion.
| inKernel | Kernel region. |
| inKernelAnchor | A point inside inKernel that defines its center. |
| inRoi | Range of pixels to be updated in the output image. |
| inSourceRoi | Range of pixels to be considered in the transformation process. |
| inBorderColor | Pixels' value outside the image boundaries. |
|
inline |
Computes a dilation of the image using a specific kernel.
Replaces each pixel with the maximum of its neighboring pixels (inside the kernel).
| inKernelShape | Kernel shape. |
| inRadiusX | Kernel's radius on the X axis. Range: [0, +inf). |
| inRadiusY | Kernel's radius on the Y axis (equal to inRadiusX if not specified). Range: [0, +inf). |
| inRoi | Range of pixels to be updated in the output image. |
| inSourceRoi | Range of pixels to be considered in the transformation process. |
| inBorderColor | Pixels' value outside the image boundaries. |
| outKernel | Kernel region used. |
|
inline |
Computes a dilation of the image using a predefined kernel.
Replaces each pixel with the maximum of its neighboring pixels (inside the kernel).
| inKernel | Kernel. |
| inRoi | Range of pixels to be updated in the output image. |
|
inline |
Computes a dilation of the image using a Region as kernel.
Replaces each pixel with the maximum of its neighboring pixels (inside the kernel).
| inKernel | Kernel region. |
| inKernelAnchor | A point inside inKernel that defines its center. |
| inRoi | Range of pixels to be updated in the output image. |
| inSourceRoi | Range of pixels to be considered in the transformation process. |
| inBorderColor | Pixels' value outside the image boundaries. |
|
inline |
Computes dilation and erosion on the image simultaneously (faster than the two separate operations).
| outDilated | Output dilated image. |
| outEroded | Output eroded image. |
| inKernelShape | Kernel shape. |
| inRadiusX | Kernel's radius on the X axis. Range: [0, +inf). |
| inRadiusY | Kernel's radius on the Y axis (equal to inRadiusX if not specified). Range: [0, +inf). |
| inRoi | Range of pixels to be updated in the output image. |
| inSourceRoi | Range of pixels to be considered in the transformation process. |
| inBorderColor | Pixels' value outside the image boundaries. |
|
inline |
Computes dilation, erosion and average simultaneously (faster execution).
| outDilated | Output dilated image. |
| outEroded | Output eroded image. |
| outAveraged | Output averaged image. |
| inKernelShape | Kernel shape. |
| inRadiusX | Kernel's radius on the X axis. Range: [0, +inf). |
| inRadiusY | Kernel's radius on the Y axis (equal to inRadiusX if not specified). Range: [0, +inf). |
| inRoi | Range of pixels to be updated in the output image. |
| inSourceRoi | Range of pixels to be considered in the transformation process. |
| inBorderColor | Pixels' value outside the image boundaries. |
|
inline |
Computes an erosion of the image using a specific kernel.
Replaces each pixel with the minimum of its neighboring pixels (inside the kernel).
| inKernelShape | Kernel shape. |
| inRadiusX | Kernel's radius on the X axis. Range: [0, +inf). |
| inRadiusY | Kernel's radius on the Y axis (equal to inRadiusX if not specified). Range: [0, +inf). |
| inRoi | Range of pixels to be updated in the output image. |
| inSourceRoi | Range of pixels to be considered in the transformation process. |
| inBorderColor | Pixels' value outside the image boundaries. |
| outKernel | Kernel region used. |
|
inline |
Computes an erosion of the image using a predefined kernel.
Replaces each pixel with the minimum of its neighboring pixels (inside the kernel).
| inKernel | Kernel. |
| inRoi | Range of pixels to be updated in the output image. |
|
inline |
Computes an erosion of the image using a Region as kernel.
Replaces each pixel with the minimum of its neighboring pixels (inside the kernel).
| inKernel | Kernel region. |
| inKernelAnchor | A point inside inKernel that defines its center. |
| inRoi | Range of pixels to be updated in the output image. |
| inSourceRoi | Range of pixels to be considered in the transformation process. |
| inBorderColor | Pixels' value outside the image boundaries. |
Apply the Hit&Miss kernel to the image.
| inHitKernel | Hit kernel. |
| inMissKernel | Miss kernel. |
|
inline |
Computes the opening of the image using a specific kernel.
Removes small gaps and fills in small holes in the image applying consecutive erosion and dilation.
| inKernelShape | Kernel shape. |
| inRadiusX | Kernel's radius on the X axis. Range: [0, +inf). |
| inRadiusY | Kernel's radius on the Y axis (equal to inRadiusX if not specified). Range: [0, +inf). |
| inRoi | Range of pixels to be updated in the output image. |
| inSourceRoi | Range of pixels to be considered in the transformation process. |
| inBorderColor | Pixels' value outside the image boundaries. |
| outKernel | Kernel region used. |
|
inline |
Computes the opening of the image using a predefined kernel.
Removes small gaps and fills in small holes in the image applying consecutive erosion and dilation.
| inKernel | Kernel. |
| inRoi | Range of pixels to be updated in the output image. |
| inBorderColor | Pixels' value outside the image boundaries. |
|
inline |
Computes the opening of the image using a Region as kernel.
Removes small gaps and fills in small holes in the image applying consecutive erosion and dilation.
| inKernel | Kernel region. |
| inKernelAnchor | A point inside inKernel that defines its center. |
| inRoi | Range of pixels to be updated in the output image. |
| inSourceRoi | Range of pixels to be considered in the transformation process. |
| inBorderColor | Pixels' value outside the image boundaries. |
|
inline |
Prune the image.
| inMaxLength | Trim length used in the pruning process. Range: [0, +inf). |
|
inline |
Computes the top hat of the image using a specific kernel.
Represents the difference between the opened image and its original version.
| inKernelShape | Kernel shape. |
| inRadiusX | Kernel's radius on the X axis. Range: [0, +inf). |
| inRadiusY | Kernel's radius on the Y axis (equal to inRadiusX if not specified). Range: [0, +inf). |
| inRoi | Range of pixels to be updated in the output image. |
| inSourceRoi | Range of pixels to be considered in the transformation process. |
| inBorderColor | Pixels' value outside the image boundaries. |
| outKernel | Kernel region used. |
|
inline |
Computes the top hat of the image using a predefined kernel.
Represents the difference between the opened image and its original version.
| inKernel | Kernel. |
| inRoi | Range of pixels to be updated in the output image. |
| inBorderColor | Pixels' value outside the image boundaries. |
|
inline |
Computes the bottom hat of the image using a Region as kernel.
Represents the difference between the opened image and its original version.
| inKernel | Kernel region. |
| inKernelAnchor | A point inside inKernel that defines its center. |
| inRoi | Range of pixels to be updated in the output image. |
| inSourceRoi | Range of pixels to be considered in the transformation process. |
| inBorderColor | Pixels' value outside the image boundaries. |