public FingerprintService(
     IAudioService audioService,
     FingerprintDescriptor fingerprintDescriptor,
     SpectrumService spectrumService,
     IWaveletService waveletService)
 {
     this.SpectrumService       = spectrumService;
     this.WaveletService        = waveletService;
     this.FingerprintDescriptor = fingerprintDescriptor;
     this.AudioService          = audioService;
 }
        public FingerprintService(
			IAudioService audioService,
			FingerprintDescriptor fingerprintDescriptor,
			SpectrumService spectrumService,
			IWaveletService waveletService)
        {
            this.SpectrumService = spectrumService;
            this.WaveletService = waveletService;
            this.FingerprintDescriptor = fingerprintDescriptor;
            this.AudioService = audioService;
        }
 public FingerprintService(IFingerprintDescriptor fingerprintDescriptor, ISpectrumService spectrumService, IWaveletService waveletService)
 {
     this.spectrumService = spectrumService;
     this.waveletService = waveletService;
     this.fingerprintDescriptor = fingerprintDescriptor;
 }
 public ImageService(SpectrumService spectrumService, IWaveletService waveletService)
 {
     this.spectrumService = spectrumService;
     this.waveletService = waveletService;
 }
Beispiel #5
0
 public ImageService(SpectrumService spectrumService, IWaveletService waveletService)
 {
     this.spectrumService = spectrumService;
     this.waveletService  = waveletService;
 }