ClearImage COM Server Send comments on this topic.
CiTools Object
See Also  Members  Example

Description

Image tools object

Image analysis function to implement form-processing and specialized imaging applications. 

Object Model








Example

VB Example (Visual Basic)Copy Code
Public Sub T_Tools (ByRef Ci As CiServer, ByRef Img As CiImage)
    ' Create CiTools object
  Dim Tools As CiTools
  Set Tools = Ci.CreateTools
      ' Attach CiImage
  Tools.Image = Img
      ' Use CiTools Object. For example
  Debug.Print "Pixels=" & Tools.CountPixels
  Debug.Print "Skew=" & Tools.MeasureSkew
  T_MeasureHistogram Tools
End Sub

See Also