'Declaration
Public Property PerformReconstruction As Boolean
'Usage
Dim instance As DropOutProcessor Dim value As Boolean instance.PerformReconstruction = value value = instance.PerformReconstruction
public bool PerformReconstruction {get; set;}
'Declaration
Public Property PerformReconstruction As Boolean
'Usage
Dim instance As DropOutProcessor Dim value As Boolean instance.PerformReconstruction = value value = instance.PerformReconstruction
public bool PerformReconstruction {get; set;}
This property controls optional reconstruction during the drop-out process. It only affects the output image where filled data and form data overlap. When you set this property to true, the DropOutMethod method will try to guess which form data pixels overlap with filled data pixels and which do not overlap with filled data pixels. It will retain the pixels that it decides are overlapping and discard the form data pixels that do not appear to overlap. You must set this value before you call the CreateImageOfField method.
In many cases, it is impossible to accurately decide which pixels overlap and which do not.
Note: This property has no effect when DropOutMethod is DropOutMethod.Clip or DropOutMethod.ClipWithoutRescaling.
Default value: true