A class that can be used for writing geotiff

Namespace: Emgu.CV.Tiff
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public class TiffWriter<TColor, TDepth> : UnmanagedObject
where TColor : struct, new(), IColor
where TDepth : new()
Public Class TiffWriter(Of TColor As {Structure, New, IColor}, TDepth As New) _
	Inherits UnmanagedObject
generic<typename TColor, typename TDepth>
where TColor : value class, gcnew(), IColor
where TDepth : gcnew()
public ref class TiffWriter : public UnmanagedObject

Type Parameters

TColor
The color type of the image to be written
TDepth
The depth type of the image to be written

Members

               
 All Members  Constructors   Fields   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
TiffWriter<(Of <(<'TColor, TDepth>)>)>(String)
Create a tiff writer to save an image
_ptr
A pointer to the unmanaged object
(Inherited from UnmanagedObject.)
Dispose()()()()
The dispose function that implements IDisposable interface
(Inherited from DisposableObject.)
DisposeObject()()()()
Release the writer and write all data on to disk.
(Overrides DisposableObject..::..DisposeObject()()()().)
Equals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Finalize()()()()
Destructor
(Inherited from DisposableObject.)
GetHashCode()()()()
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType()()()()
Gets the Type of the current instance.
(Inherited from Object.)
MemberwiseClone()()()()
Creates a shallow copy of the current Object.
(Inherited from Object.)
Ptr
Pointer to the unmanaged object
(Inherited from UnmanagedObject.)
ReleaseManagedResources()()()()
Release the managed resources. This function will be called during the disposal of the current object. override ride this function if you need to call the Dispose() function on any managed IDisposable object created by the current object
(Inherited from DisposableObject.)
ToString()()()()
Returns a String that represents the current Object.
(Inherited from Object.)
WriteGeoTag(array<Double>[]()[][], array<Double>[]()[][])
Write the geo information into the tiff file
WriteGeoTag(GeodeticCoordinate, Size, MCvPoint2D64f)
Write the geo information into the tiff file
WriteImage(Image<(Of <<'(TColor, TDepth>)>>))
Write the image to the tiff file

Inheritance Hierarchy

System..::..Object
  Emgu.Util..::..DisposableObject
    Emgu.Util..::..UnmanagedObject
      Emgu.CV.Tiff..::..TiffWriter<(Of <(<'TColor, TDepth>)>)>
        Emgu.CV.Tiff..::..TileTiffWriter<(Of <(<'TColor, TDepth>)>)>

See Also