Click or drag to resize

IMcTilingCreateTiledImage Method

Creates tiled image.

Namespace:  MediaCy.IQL.Align
Assembly:  MediaCy.IQL.Align (in MediaCy.IQL.Align.dll) Version: 10.0.6912.0
Syntax
VB
Function CreateTiledImage ( 
	Optional Flags As mcImageCreateFlags = mcImageCreateFlags.mcicfDefault
) As McImage

Parameters

Flags (Optional)
Type: MediaCy.IQL.EnginemcImageCreateFlags
image creation flags.

Return Value

Type: McImage
Remarks
The source frames have to be set using SetSourceForTiling before calling the method.
Examples
VB
Sub FFTTiling()
'align active image using FFT algorithm
'the test image Potato_512.seq
With ThisApplication.ActiveImage.Tiling
.SetSourceForTiling
.SetTilingLayout 3, 3, mctoReverseY
.TilingMethodFFT.Prefilter = mctpfLaplace5
.TilingMethodFFT.OverlapX = 32
.TilingMethodFFT.OverlapY = 32
.TilingMethodFFT.CorrelationMethod = mcCorrelationFFTFull
.TilingMethod = mcTilingMethodFFT
.CalculateTiling
.CreateTiledImage
End With
End Sub
See Also