mcTilingSetCreationFlags Enumeration
|
|
Legal flag values for the IMcTilingEx.CreateImageSetFromTiles SetCreationFlags property.
Namespace:
MediaCy.IQL.Align
Assembly:
MediaCy.IQL.Align (in MediaCy.IQL.Align.dll) Version: 10.0.6912.0
SyntaxPublic Enumeration mcTilingSetCreationFlags
Members
| Member name | Value | Description |
---|
| mctscfNoFlags | 0 | No special set creation flags. |
| mctscfAllowTileOverlap | 0 | No attempt is made to create afull coverage tiling in the created image set. There may be areas of overlap or
gaps in the tiling stored in the Scan dimension of the result image set. This is
the default behavior, but either the mctscfBlendTiles or mctscfTrimTiles flags
will overide this default to result in a full coverage tiling. |
| mctscfBlendTiles | 1 | Create a full-coverage tilingwith areas of overlap blended. mctscfBlendTiles, mctscfTrimTiles and
mctscfAllowTileOverlap are mutually exclusive states; if both mctscfBlendTiles and
mctscfTrimTiles flags are set, the McTilig.StitchingMethod property is used to
determine which approach is used (see mctscfUseStitchingMethod). |
| mctscfTrimTiles | 2 | Create a full-coverage tilingwith areas of overlap taken from one of the overlapping tiles. mctscfBlendTiles,
mctscfTrimTiles and mctscfAllowTileOverlap are mutually exclusive states; if both
mctscfBlendTiles and mctscfTrimTiles flags are set, the McTilig.StitchingMethod
property is used to determine which approach is used (see
mctscfUseStitchingMethod). . |
| mctscfUseStitchingMethod | 3 | Create a full-coverage tilingwith areas of overlap either blended or taken from the dominant pixel depending on
the state of the McTiling.StitchingMethod property. Note that this flag is just
a combination of the mctscfBlendTiles and mctscfTrimTiles flags. |
| mctscfCopyTiles | 4 | The tiling in the created imageset will consist of frames in one or more newly created McImage instances. This
flag is redundant if either the mctscfBlendTiles or mctscfTrimTiles flags are set.
But if they are clear, then without this flag the created image set will be
populated with the frames supplied by the call to the McTiling.SetSourceForTiling
method. This flag will be honored only if the frames in the tiling are of the
same size. For situations where the source frames are of different sizes, this
flag is ignored; in this case either a "reference set" will be created if the
mctscfBlendTiles and mctscfTrimTiles flags are clear. |
| mctscfAllFlags | -1 | all state flags |
See Also