inpainting_cedinpainting_cedInpaintingCedInpaintingCedinpainting_ced (算子)

名称

inpainting_cedinpainting_cedInpaintingCedInpaintingCedinpainting_ced — 通过连续增强扩散进行修复。

签名

inpainting_ced(Image, Region : InpaintedImage : Sigma, Rho, Theta, Iterations : )

Herror inpainting_ced(const Hobject Image, const Hobject Region, Hobject* InpaintedImage, double Sigma, double Rho, double Theta, const Hlong Iterations)

Herror T_inpainting_ced(const Hobject Image, const Hobject Region, Hobject* InpaintedImage, const Htuple Sigma, const Htuple Rho, const Htuple Theta, const Htuple Iterations)

void InpaintingCed(const HObject& Image, const HObject& Region, HObject* InpaintedImage, const HTuple& Sigma, const HTuple& Rho, const HTuple& Theta, const HTuple& Iterations)

HImage HImage::InpaintingCed(const HRegion& Region, double Sigma, double Rho, double Theta, Hlong Iterations) const

static void HOperatorSet.InpaintingCed(HObject image, HObject region, out HObject inpaintedImage, HTuple sigma, HTuple rho, HTuple theta, HTuple iterations)

HImage HImage.InpaintingCed(HRegion region, double sigma, double rho, double theta, int iterations)

def inpainting_ced(image: HObject, region: HObject, sigma: float, rho: float, theta: float, iterations: int) -> HObject

描述

算子 inpainting_cedinpainting_cedInpaintingCedInpaintingCedInpaintingCedinpainting_ced performs an anisotropic diffusion process on the region RegionRegionRegionRegionregionregion of the input image ImageImageImageImageimageimage with the objective of completing discontinuous image edges diffusively by increasing the coherence of the image structures contained in ImageImageImageImageimageimage and without smoothing these edges perpendicular to their dominating direction. The mechanism is the same as in the operator coherence_enhancing_diffcoherence_enhancing_diffCoherenceEnhancingDiffCoherenceEnhancingDiffCoherenceEnhancingDiffcoherence_enhancing_diff, which is based on a discretization of the anisotropic diffusion equation formulated by Weickert. With a 2x2 coefficient matrix G that depends on the gray values in ImageImageImageImageimageimage, this is an enhancement of the mean curvature flow or intrinsic heat equation on the gray value function u defined by the input image ImageImageImageImageimageimage at a time . The smoothing operator mean_curvature_flowmean_curvature_flowMeanCurvatureFlowMeanCurvatureFlowMeanCurvatureFlowmean_curvature_flow is a direct application of the mean curvature flow equation. With the operator inpainting_mcfinpainting_mcfInpaintingMcfInpaintingMcfInpaintingMcfinpainting_mcf, it can also be used for image inpainting. The discrete diffusion equation is solved in IterationsIterationsIterationsIterationsiterationsiterations time steps of length ThetaThetaThetaThetathetatheta, so that the output image InpaintedImageInpaintedImageInpaintedImageInpaintedImageinpaintedImageinpainted_image contains the gray value function at the time IterationsIterationsIterationsIterationsiterationsiterations * ThetaThetaThetaThetathetatheta

To detect the image direction more robustly, in particular on noisy input data, an additional isotropic smoothing step can precede the computation of the gray value gradients. The parameter SigmaSigmaSigmaSigmasigmasigma determines the magnitude of the smoothing by means of the standard deviation of a corresponding Gaussian convolution kernel, as used in the operator isotropic_diffusionisotropic_diffusionIsotropicDiffusionIsotropicDiffusionIsotropicDiffusionisotropic_diffusion for isotropic image smoothing.

Similar to the operator inpainting_mcfinpainting_mcfInpaintingMcfInpaintingMcfInpaintingMcfinpainting_mcf, the structure of the image data in RegionRegionRegionRegionregionregion is simplified by smoothing the level lines of ImageImageImageImageimageimage. By this, image errors and unwanted objects can be removed from the image, while the edges in the neighborhood are extended continuously. This procedure is called image inpainting. The objective is to introduce a minimum amount of artifacts or smoothing effects, so that the image manipulation is least visible to a human beholder.

While the matrix G is given by in the case of the operator inpainting_mcfinpainting_mcfInpaintingMcfInpaintingMcfInpaintingMcfinpainting_mcf, where I denotes the unit matrix, is again smoothed componentwise by a Gaussian filter of standard deviation RhoRhoRhoRhorhorho for coherence_enhancing_diffcoherence_enhancing_diffCoherenceEnhancingDiffCoherenceEnhancingDiffCoherenceEnhancingDiffcoherence_enhancing_diff。Then, the final coefficient matrix is constructed from the eigenvalues and eigenvectors of the resulting intermediate matrix, where the functions were determined empirically and taken from the publication of Weickert.

Hence, the diffusion direction in mean_curvature_flowmean_curvature_flowMeanCurvatureFlowMeanCurvatureFlowMeanCurvatureFlowmean_curvature_flow is only determined by the local direction of the gray value gradient, while considers the macroscopic structure of the image objects on the scale RhoRhoRhoRhorhorho and the magnitude of the diffusion in coherence_enhancing_diffcoherence_enhancing_diffCoherenceEnhancingDiffCoherenceEnhancingDiffCoherenceEnhancingDiffcoherence_enhancing_diff depends on how well this structure is defined.

To achieve the highest possible consistency of the newly created edges with the image data from the neighborhood, the gray values are not mirrored at the border of RegionRegionRegionRegionregionregion to compute the convolution with the smoothing filter mask of scale RhoRhoRhoRhorhorho on the pixels close to the border, although this would be the common approach for filter operators. Instead, the existence of gray values on a band of width ceil(3.1*Rho)+2 pixels around RegionRegionRegionRegionregionregion is presumed and these values are used in the convolution. This means that RegionRegionRegionRegionregionregion must keep this much distance to the border of the image matrix ImageImageImageImageimageimage. By involving the gray values and directional information from this extended area, it can be achieved that the continuation of the edges is not only continuous, but also smooth, which means without kinks. Please note that the inpainting progress is restricted to those pixels that are included in the ROI of the input image ImageImageImageImageimageimage. If the ROI does not include the entire region RegionRegionRegionRegionregionregion, a band around the intersection of RegionRegionRegionRegionregionregion and the ROI is used to define the boundary values.

To decrease the number of iterations required for attaining a satisfactory result, it may be useful to initialize the gray value matrix in RegionRegionRegionRegionregionregion with the harmonic interpolant, a continuous function of minimal curvature, by applying the operator harmonic_interpolationharmonic_interpolationHarmonicInterpolationHarmonicInterpolationHarmonicInterpolationharmonic_interpolation to ImageImageImageImageimageimage before calling inpainting_cedinpainting_cedInpaintingCedInpaintingCedInpaintingCedinpainting_ced.

注意

请注意,若使用域缩减后的图像作为输入,滤波器算子可能会返回意外结果。请参阅 滤波器 一章

执行信息

参数

ImageImageImageImageimageimage (输入对象)  (multichannel-)image(-array) objectHImageHObjectHImageHobject (byte / uint2 / real)

输入图像。

RegionRegionRegionRegionregionregion (输入对象)  region objectHRegionHObjectHRegionHobject

Inpainting region.

InpaintedImageInpaintedImageInpaintedImageInpaintedImageinpaintedImageinpainted_image (输出对象)  image(-array) objectHImageHObjectHImageHobject * (byte / uint2 / real)

输出图像。

SigmaSigmaSigmaSigmasigmasigma (输入控制)  real HTuplefloatHTupleHtuple (real) (double) (double) (double)

Smoothing for derivative operator.

默认值: 0.5

建议值: 0.0, 0.1, 0.5, 1.0

限制: Sigma >= 0

RhoRhoRhoRhorhorho (输入控制)  real HTuplefloatHTupleHtuple (real) (double) (double) (double)

Smoothing for diffusion coefficients.

默认值: 3.0

建议值: 0.0, 1.0, 3.0, 5.0, 10.0, 30.0

限制: Rho >= 0

ThetaThetaThetaThetathetatheta (输入控制)  real HTuplefloatHTupleHtuple (real) (double) (double) (double)

Time step.

默认值: 0.5

建议值: 0.1, 0.2, 0.3, 0.4, 0.5

限制: 0 < Theta <= 0.5

IterationsIterationsIterationsIterationsiterationsiterations (输入控制)  integer HTupleintHTupleHtuple (integer) (int / long) (Hlong) (Hlong)

Number of iterations.

默认值: 10

建议值: 1, 5, 10, 20, 50, 100, 500

限制: Iterations >= 1

示例(HDevelop)

read_image (Image, 'fabrik')
gen_rectangle1 (Rectangle, 270, 180, 320, 230)
harmonic_interpolation (Image, Rectangle, InpaintedImage, 0.01)
inpainting_ced (InpaintedImage, Rectangle, InpaintedImage2, \
                0.5, 3.0, 0.5, 1000)
dev_display(InpaintedImage2)

替代

harmonic_interpolationharmonic_interpolationHarmonicInterpolationHarmonicInterpolationHarmonicInterpolationharmonic_interpolation, inpainting_ctinpainting_ctInpaintingCtInpaintingCtInpaintingCtinpainting_ct, inpainting_anisoinpainting_anisoInpaintingAnisoInpaintingAnisoInpaintingAnisoinpainting_aniso, inpainting_mcfinpainting_mcfInpaintingMcfInpaintingMcfInpaintingMcfinpainting_mcf, inpainting_textureinpainting_textureInpaintingTextureInpaintingTextureInpaintingTextureinpainting_texture

参考文献

J. Weickert, V. Hlavac, R. Sara; “Multiscale texture enhancement”; Computer analysis of images and patterns, Lecture Notes in Computer Science, Vol. 970, pp. 230-237; Springer, Berlin; 1995.
J. Weickert, B. ter Haar Romeny, L. Florack, J. Koenderink, M. Viergever; “A review of nonlinear diffusion filtering”; Scale-Space Theory in Computer Vision, Lecture Notes in Comp. Science, Vol. 1252, pp. 3-28; Springer, Berlin; 1997.

模块

基础