This method creates a sequence of frames which are the transformation of the source image to target image. Images pixelFormat must be 24 bit RGB (true color) and have the same size.

Also source and target must contains IEObjectLine objects (the same number) which describe the transformation. You should create line objects in the same order on boths IEImage components.

Namespace: HiComponents.IEvolution
Assembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public void CreateMorphingSequence(
	IEImage source,
	IEImage target,
	int framesCount
)
Public Sub CreateMorphingSequence ( _
	source As IEImage, _
	target As IEImage, _
	framesCount As Integer _
)
public:
void CreateMorphingSequence(
	IEImage^ source, 
	IEImage^ target, 
	int framesCount
)

Parameters

source
IEImage
Source image, containing also source lines.
target
IEImage
Target image, containing also destination lines.
framesCount
Int32
Specifies the number of frames to create.

See Also