| Package | Description |
|---|---|
| org.bytedeco.opencv.global | |
| org.bytedeco.opencv.opencv_core | |
| org.bytedeco.opencv.opencv_imgproc |
| Modifier and Type | Method and Description |
|---|---|
static IplConvKernel |
opencv_imgproc.cvCreateStructuringElementEx(int cols,
int rows,
int anchor_x,
int anchor_y,
int shape) |
static IplConvKernel |
opencv_imgproc.cvCreateStructuringElementEx(int cols,
int rows,
int anchor_x,
int anchor_y,
int shape,
int[] values) |
static IplConvKernel |
opencv_imgproc.cvCreateStructuringElementEx(int cols,
int rows,
int anchor_x,
int anchor_y,
int shape,
IntBuffer values) |
static IplConvKernel |
opencv_imgproc.cvCreateStructuringElementEx(int cols,
int rows,
int anchor_x,
int anchor_y,
int shape,
IntPointer values)
\brief Returns a structuring element of the specified size and shape for morphological operations.
|
| Modifier and Type | Method and Description |
|---|---|
static void |
opencv_imgproc.cvDilate(CvArr src,
CvArr dst,
IplConvKernel element,
int iterations)
\brief dilates input image (applies maximum filter) one or more times.
|
static void |
opencv_imgproc.cvErode(CvArr src,
CvArr dst,
IplConvKernel element,
int iterations)
\brief erodes input image (applies minimum filter) one or more times.
|
static void |
opencv_imgproc.cvMorphologyEx(CvArr src,
CvArr dst,
CvArr temp,
IplConvKernel element,
int operation) |
static void |
opencv_imgproc.cvMorphologyEx(CvArr src,
CvArr dst,
CvArr temp,
IplConvKernel element,
int operation,
int iterations)
\brief Performs complex morphological transformation
|
static void |
opencv_imgproc.cvReleaseStructuringElement(IplConvKernel element) |
| Modifier and Type | Method and Description |
|---|---|
IplConvKernel |
IplConvKernel.anchorX(int setter) |
IplConvKernel |
IplConvKernel.anchorY(int setter) |
IplConvKernel |
IplConvKernel.getPointer(long i) |
IplConvKernel |
IplConvKernel.nCols(int setter) |
IplConvKernel |
IplConvKernel.nRows(int setter) |
IplConvKernel |
IplConvKernel.nShiftR(int setter) |
IplConvKernel |
IplConvKernel.position(long position) |
IplConvKernel |
IplConvKernel.values(IntPointer setter) |
| Modifier and Type | Method and Description |
|---|---|
static IplConvKernel |
AbstractIplConvKernel.create(int cols,
int rows,
int anchor_x,
int anchor_y,
int shape,
int[] values)
Calls cvCreateStructuringElementEx(), and registers a deallocator.
|
Copyright © 2022. All rights reserved.