Click or drag to resize

SequenceLoader Class

Class managing sequences loading from disk.
Inheritance Hierarchy

Namespace: LynceeTec.API.Sequence
Assembly: LynceeTec.API.Sequence (in LynceeTec.API.Sequence.dll) Version: 10.2.3317.0 , built 2025-03-17 14:55:36 UTC
Syntax
public class SequenceLoader : BaseSequenceManager

The SequenceLoader type exposes the following members.

Constructors
 NameDescription
Public methodSequenceLoader(UInt32)Initializes a new instance of the SequenceLoader class
Public methodSequenceLoader(IConfigManager, UInt32)Initializes a new instance of the SequenceLoader class
Top
Properties
 NameDescription
Public propertyConfigManager Gets the current ConfigManager in use.
(Inherited from BaseSequenceManager)
Public propertyConfiguration Gets the current configuration used for hologram reconstruction.
(Inherited from BaseSequenceManager)
Public propertyCurrentState Gets the current state of the sequence manager.
(Inherited from BaseSequenceManager)
Public propertyIsDatabaseConfigurationInitialized Gets a value indicating whether the database configuration is initialized.
Public propertyIsMetadataConfigurationInitialized Gets a value indicating whether the metadata configuration is initialized.
Public propertyNumberOfRecords Gets the current total number of records.
(Inherited from BaseSequenceManager)
Public propertyReconstructionWindowHalfSize Defines how many reconstructions must be processed around the selected index. If GetReconstruction(ReconstructionResults, Int32, Boolean) is called for index i, outputs in range [i - ReconstructionWindowHalfSize, i + ReconstructionWindowHalfSize] are reconstructed to optimize the process and anticipate the call to future indices.
(Inherited from BaseSequenceManager)
Public propertyTemporalAveragingFramesNumber
(Overrides BaseSequenceManagerTemporalAveragingFramesNumber)
Public propertyUseMetadataConfiguration Gets or sets a value indicating whether to use the configuration created from the metadata or the database.
Public propertyUseReconstruction Gets or sets a value indicating whether the reconstruction is enabled.
(Inherited from BaseSequenceManager)
Public propertyUseReferenceHologramSaving Gets or sets the option saving the reference hologram(s) in the first hologram metadata of the acquired sequence.
(Inherited from BaseSequenceManager)
Top
Methods
 NameDescription
Public methodAccessHologram Accesses the hologram object directly in the current buffer.
(Inherited from BaseSequenceManager)
Public methodCancelLoading Cancels the loading of a sequence from a file.
Public methodCancelSaving Cancels the saving of a sequence.
(Inherited from BaseSequenceManager)
Public methodCastSequence Casts an existing sequence into the current buffer.
(Overrides BaseSequenceManagerCastSequence(BaseSequenceManagerHologramGroupBuffer))
Public methodComputeAndApplyFittingToConfiguration Compute fitting on specified phase result using configuration parameters.
(Inherited from BaseSequenceManager)
Public methodDeregisterConfigurationMemberModifiedEvent Deregister a function registered to the specified member.
(Inherited from ConfigurationEventsManager)
Public methodDeregisterConfigurationModifiedEvent Deregister a registered function.
(Inherited from ConfigurationEventsManager)
Public methodDispose
(Inherited from ConfigurationEventsManager)
Public methodExtractSequence Extract the current sequence buffer and resets the data.
(Inherited from BaseSequenceManager)
Public methodGetHologramCopy Gets a copy of the defined hologram in the current buffer.
(Inherited from BaseSequenceManager)
Public methodGetReconstruction Gets the reconstruction results of a record in the current buffer.
(Inherited from BaseSequenceManager)
Public methodIsInState Determines if the state machine is in the supplied state.
(Inherited from BaseSequenceManager)
Public methodLoadSequence Loads an existing sequence.
Public methodRegisterConfigurationMemberModifiedEvent Register a function that will be executed when the specified member is modified.
(Inherited from ConfigurationEventsManager)
Public methodRegisterConfigurationModifiedEvent Register a function that will be executed when any configuration member is modified.
(Inherited from ConfigurationEventsManager)
Public methodReset Resets recorded buffer.
(Inherited from BaseSequenceManager)
Public methodSaveBigTiffSequence Saves the sequence into a BigTiff (.btf) format.
(Inherited from BaseSequenceManager)
Public methodSaveKoalaSequence Saves the sequence in a Koala compatible format.
(Inherited from BaseSequenceManager)
Top
Events
 NameDescription
Public eventActiveConfigurationChanged
(Inherited from BaseSequenceManager)
Public eventStateMachineStateChanged Occurs when the state machine state changes
(Inherited from BaseSequenceManager)
Top
Remarks

Some calls to the class elements can only be performed when CurrentState has some defined values. The following scheme describes the allowed actions.

Thread Safety
Static members of this type are safe for multi-threaded operations. Instance members of this type are safe for multi-threaded operations.
See Also