Leadtools.Services.ImageProcessing.ServiceContracts Requires Document/Medical product license | Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
DynamicBinary Method
See Also  Example
Leadtools.Services.ImageProcessing.ServiceContracts Namespace > IColorProcessingService Interface : DynamicBinary Method



request
A DataContractAttribute containing the data that will be used in this DynamicBinary operation.
request
A DataContractAttribute containing the data that will be used in this DynamicBinary operation.
Converts an image into a black and white image without changing its bits per pixel by using a local threshold value for each pixel of the image. This operation is useful for pre-processing images for the purpose of improving barcode recognition results.

Syntax

Visual Basic (Declaration) 
<OperationContractAttribute("DynamicBinary")>
<FaultContractAttribute(DetailType=Leadtools.Services.Raster.FaultContracts.RasterFault, 
   Action="", 
   Name="", 
   Namespace="", 
   HasProtectionLevel=False)>
Overridable Function DynamicBinary( _
   ByVal request As DynamicBinaryRequest _
) As CommandResponse
Visual Basic (Usage)Copy Code
Dim instance As IColorProcessingService
Dim request As DynamicBinaryRequest
Dim value As CommandResponse
 
value = instance.DynamicBinary(request)
C# 
[OperationContractAttribute("DynamicBinary")]
[FaultContractAttribute(DetailType=Leadtools.Services.Raster.FaultContracts.RasterFault, 
   Action="", 
   Name="", 
   Namespace="", 
   HasProtectionLevel=false)]
virtual CommandResponse DynamicBinary( 
   DynamicBinaryRequest request
)
C++/CLI 
[OperationContractAttribute("DynamicBinary")]
[FaultContractAttribute(DetailType=Leadtools.Services.Raster.FaultContracts.RasterFault, 
   Action="", 
   Name="", 
   Namespace="", 
   HasProtectionLevel=false)]
virtual CommandResponse DynamicBinary( 
   DynamicBinaryRequest request
) 

Parameters

request
A DataContractAttribute containing the data that will be used in this DynamicBinary operation.

Return Value

A DataContractAttribute containing the modified image resulting from the HistogramEqualize operation.

Example

Visual BasicCopy Code
Public Sub DynamicBinaryExample()
  Dim client As ColorProcessingServiceClient = New ColorProcessingServiceClient()
  Dim sourceBinaryData As RawBinaryData = New RawBinaryData()
  sourceBinaryData.Data = File.ReadAllBytes(LeadtoolsExamples.Common.ImagesPath.Path & "image1.cmp")

  Dim convertOptions As RasterConvertOptions = New RasterConvertOptions()

  convertOptions.Source = sourceBinaryData
  convertOptions.Destination = Nothing
  convertOptions.Format = RasterImageFormat.Bmp
  convertOptions.FirstPage = 1
  convertOptions.LastPage = 1
  convertOptions.BitsPerPixel = 24
  convertOptions.QualityFactor = 2

  Dim request As DynamicBinaryRequest = New DynamicBinaryRequest()
  request.ConvertOptions = convertOptions
  request.RegionData = Nothing
  request.Dimension = 8
  request.LocalContrast = 16

  Dim response As CommandResponse = client.DynamicBinary(request)
  If Not response.Destination Is Nothing Then
    If TypeOf response.Destination Is RawBinaryData Then
       File.WriteAllBytes(LeadtoolsExamples.Common.ImagesPath.Path & "DynamicBinary.bmp", (TryCast(response.Destination, RawBinaryData)).Data)
    End If
  End If

  client.Close()
End Sub
C#Copy Code
public void DynamicBinaryExample() 

   ColorProcessingServiceClient client = new ColorProcessingServiceClient(); 
   RawBinaryData sourceBinaryData = new RawBinaryData(); 
   sourceBinaryData.Data = File.ReadAllBytes(LeadtoolsExamples.Common.ImagesPath.Path + "image1.cmp"); 
 
   RasterConvertOptions convertOptions = new RasterConvertOptions(); 
 
   convertOptions.Source = sourceBinaryData; 
   convertOptions.Destination = null; 
   convertOptions.Format = RasterImageFormat.Bmp; 
   convertOptions.FirstPage = 1; 
   convertOptions.LastPage = 1; 
   convertOptions.BitsPerPixel = 24; 
   convertOptions.QualityFactor = 2; 
 
   DynamicBinaryRequest request = new DynamicBinaryRequest(); 
   request.ConvertOptions = convertOptions; 
   request.RegionData = null; 
   request.Dimension = 8; 
   request.LocalContrast = 16; 
 
   CommandResponse response = client.DynamicBinary(request); 
   if (response.Destination != null) 
   { 
      if (response.Destination is RawBinaryData) 
         File.WriteAllBytes(LeadtoolsExamples.Common.ImagesPath.Path + "DynamicBinary.bmp", (response.Destination as RawBinaryData).Data); 
   } 
 
   client.Close(); 
}

Remarks

  • This operation converts an image into a black and white image without changing its bits per pixel.
  • Each pixel is compared to a dynamically-calculated threshold. If the intensity of the pixel is higher (that is, the pixel is brighter) than the dynamic threshold, the pixel will be set to white. If the intensity of the pixel is lower (that is, the pixel is darker) than the dynamic threshold, the pixel will be set to black.
  • Here are some hints on using this operation:
  • Increasing the LocalContrast property increases the number of pixels that use the global threshold. This tends to preserve the general aspect of the image and reduces the improvement in the areas with many details. Reducing the LocalContrast property, increases the contrast in areas with many details.
  • Increasing the Dimension property increases the area used for local contrast. This makes the color changes smoother.
  • This operation is good as a prerequisite for converting scanned images to 1-bit, because it uses one threshold for background and another for text.
  • This operation supports 12 and 16-bit grayscale and 48 and 64-bit color images. Support for 12 and 16-bit grayscale and 48 and 64-bit color images is available only in the Document/Medical toolkits.
  • This operation does not support signed data images.
  • This operation does not support 32-bit grayscale images.
Use the AutoBinary when you simply want to apply binary segmentation to the bitmap using an automatically calculated threshold based on a two-peak method of statistical analysis on its histogram. Use the AutoBinary to convert an image into a black and white image without changing its bits per pixel.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also

Applications developed with LEADTOOLS WCF components require runtime licenses. Server licensing is required for applications on a server. For more information, refer to: Imaging Pro/Document/Medical Features