/// <summary>
        /// The current set of capture profiles for imaging with selectable capture profile feature.
        /// </summary>
        //private System.Collections.Generic.List<IProperty> _captureProfiles;

        public CaptureProvider()
        {
            // Load configuration
            //OPPFConfigXML.Configure();

            // No selectable capture profiles
            // TODO: Implement
            //SetCaptureProfiles(null);

            // Get Logger.
            _log = LogManager.GetLogger(this.GetType());

            // Log the call to the constructor
            _log.Debug("Constructed a new " + this);

            // Allows us to get the plate type information
            _pip = new PlateInfoProviderNew();
        }
Exemple #2
0
 public DummyImageProcessor2Provider()
 {
     // Load configuration
     OPPFConfigXML.Configure();
     _pip = new DummyPlateInfoProvider();
 }
Exemple #3
0
 public ImageProcessor2ProviderNew()
 {
     // Load configuration
     OPPFConfigXML.Configure();
     _pip = new PlateInfoProviderNew();
 }