![]() |
TransformToPolar Class |
Namespace: Accord.Imaging.Filters
The TransformToPolar type exposes the following members.
Name | Description | |
---|---|---|
![]() | TransformToPolar |
Initializes a new instance of the TransformToPolar class.
|
Name | Description | |
---|---|---|
![]() | CirlceDepth |
Circularity coefficient of the mapping, [0, 1].
|
![]() | FillColor |
Fill color to use for unprocessed areas.
|
![]() | FormatTranslations |
Format translations dictionary.
(Overrides BaseTransformationFilterFormatTranslations.) |
![]() | MapBackwards |
Specifies direction of mapping.
|
![]() | MapFromTop |
Specifies if top of the source image should go to center or edge of the result image.
|
![]() | NewSize |
Size of destination image.
|
![]() | OffsetAngle |
Offset angle used to shift mapping, [-360, 360] degrees.
|
![]() | UseOriginalImageSize |
Use source image size for destination or not.
|
Name | Description | |
---|---|---|
![]() | Apply(Bitmap) |
Apply filter to an image.
(Inherited from BaseTransformationFilter.) |
![]() | Apply(BitmapData) |
Apply filter to an image.
(Inherited from BaseTransformationFilter.) |
![]() | Apply(UnmanagedImage) |
Apply filter to an image in unmanaged memory.
(Inherited from BaseTransformationFilter.) |
![]() | Apply(UnmanagedImage, UnmanagedImage) |
Apply filter to an image in unmanaged memory.
(Inherited from BaseTransformationFilter.) |
![]() | CalculateNewImageSize |
Calculates new image size.
(Overrides BaseTransformationFilterCalculateNewImageSize(UnmanagedImage).) |
![]() | Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as the default hash function. (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.) |
![]() | ProcessFilter |
Process the filter on the specified image.
(Overrides BaseTransformationFilterProcessFilter(UnmanagedImage, UnmanagedImage).) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
Name | Description | |
---|---|---|
![]() | HasMethod |
Checks whether an object implements a method with the given name.
(Defined by ExtensionMethods.) |
![]() | IsEqual |
Compares two objects for equality, performing an elementwise
comparison if the elements are vectors or matrices.
(Defined by Matrix.) |
![]() | To(Type) | Overloaded.
Converts an object into another type, irrespective of whether
the conversion can be done at compile time or not. This can be
used to convert generic types to numeric types during runtime.
(Defined by ExtensionMethods.) |
![]() | ToT | Overloaded.
Converts an object into another type, irrespective of whether
the conversion can be done at compile time or not. This can be
used to convert generic types to numeric types during runtime.
(Defined by ExtensionMethods.) |
The image processing routine does transformation of the source image into circle (polar transformation). The produced effect is similar to GIMP's "Polar Coordinates" distortion filter (or its equivalent in Photoshop).
The filter accepts 8 bpp grayscale and 24/32 bpp color images for processing.
Sample usage:
// create filter TransformToPolar filter = new TransformToPolar( ); filter.OffsetAngle = 0; filter.CirlceDepth = 1; filter.UseOriginalImageSize = false; filter.NewSize = new Size( 200, 200 ); // apply the filter Bitmap newImage = filter.Apply( image );
Initial image:
Result image: