OpenCV453
|
関数 | |
cv::ft::CV_EXPORTS_AS (createKernel1) void createKernel(InputArray A | |
Creates kernel from basic functions. [詳解] | |
CV_EXPORTS_W void | cv::ft::createKernel (int function, int radius, OutputArray kernel, const int chn) |
Creates kernel from general functions. [詳解] | |
CV_EXPORTS_W void | cv::ft::inpaint (InputArray image, InputArray mask, OutputArray output, int radius, int function, int algorithm) |
Image inpainting [詳解] | |
CV_EXPORTS_W void | cv::ft::filter (InputArray image, InputArray kernel, OutputArray output) |
Image filtering [詳解] | |
変数 | |
InputArray | cv::ft::B |
InputArray OutputArray | cv::ft::kernel |
InputArray OutputArray const int | cv::ft::chn |
CV_EXPORTS_W void cv::ft::createKernel | ( | int | function, |
int | radius, | ||
OutputArray | kernel, | ||
const int | chn | ||
) |
Creates kernel from general functions.
function | Function type could be one of the following:
|
radius | Radius of the basic function. |
kernel | Final 32-bit kernel. |
chn | Number of kernel channels. |
The function creates kernel from predefined functions.
cv::ft::CV_EXPORTS_AS | ( | createKernel1 | ) |
Creates kernel from basic functions.
A | Basic function used in axis x. |
B | Basic function used in axis y. |
kernel | Final 32-bit kernel derived from A and B. |
chn | Number of kernel channels. |
The function creates kernel usable for latter fuzzy image processing.
CV_EXPORTS_W void cv::ft::filter | ( | InputArray | image, |
InputArray | kernel, | ||
OutputArray | output | ||
) |
Image filtering
image | Input image. |
kernel | Final 32-bit kernel. |
output | Output 32-bit image. |
Filtering of the input image by means of F-transform.
CV_EXPORTS_W void cv::ft::inpaint | ( | InputArray | image, |
InputArray | mask, | ||
OutputArray | output, | ||
int | radius, | ||
int | function, | ||
int | algorithm | ||
) |
Image inpainting
image | Input image. |
mask | Mask used for unwanted area marking. |
output | Output 32-bit image. |
radius | Radius of the basic function. |
function | Function type could be one of the following:
|
algorithm | Algorithm could be one of the following:
|
This function provides inpainting technique based on the fuzzy mathematic.