C# Класс AForge.Imaging.Filters.StereoAnaglyph

Stereo anaglyph filter.

The image processing filter produces stereo anaglyph images which are aimed to be viewed through anaglyph glasses with red filter over the left eye and cyan over the right.

The stereo image is produced by combining two images of the same scene taken from a bit different points. The right image must be provided to the filter using BaseInPlaceFilter2.OverlayImage property, but the left image must be provided to IFilter.Apply(Bitmap) method, which creates the anaglyph image.

The filter accepts 24 bpp color images for processing.

See Algorithm enumeration for the list of supported anaglyph algorithms.

Sample usage:

// create filter StereoAnaglyph filter = new StereoAnaglyph( ); // set right image as overlay filter.Overlay = rightImage // apply the filter (providing left image) Bitmap resultImage = filter.Apply( leftImage );

Source image (left):

Overlay image (right):

Result image:

Наследование: BaseInPlaceFilter2
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
StereoAnaglyph ( ) : System

Initializes a new instance of the StereoAnaglyph class.

StereoAnaglyph ( Algorithm anaglyphAlgorithm ) : System

Initializes a new instance of the StereoAnaglyph class.

Защищенные методы

Метод Описание
ProcessFilter ( UnmanagedImage image, UnmanagedImage overlay ) : void

Process the filter on the specified image.

Описание методов

ProcessFilter() защищенный метод

Process the filter on the specified image.
protected ProcessFilter ( UnmanagedImage image, UnmanagedImage overlay ) : void
image UnmanagedImage Source image data (left image).
overlay UnmanagedImage Overlay image data (right image).
Результат void

StereoAnaglyph() публичный метод

Initializes a new instance of the StereoAnaglyph class.
public StereoAnaglyph ( ) : System
Результат System

StereoAnaglyph() публичный метод

Initializes a new instance of the StereoAnaglyph class.
public StereoAnaglyph ( Algorithm anaglyphAlgorithm ) : System
anaglyphAlgorithm Algorithm Algorithm to use for creating anaglyph images.
Результат System