SlideShare a Scribd company logo
1 of 22
Download to read offline
Problem Statement
Motivation
Background
Multi-step approach
Methods
Observations
Results
Real-time Onset Detection in Musical Signals
EE779 : Course Project
Yash Bhalgat (13D070014)
Kalpesh Patil (130040019)
October 27, 2016
Yash Bhalgat (13D070014) Kalpesh Patil (130040019) Real-time Onset Detection in Musical Signals
Problem Statement
Motivation
Background
Multi-step approach
Methods
Observations
Results
Overview
1 Problem Statement
2 Motivation
3 Background
4 Multi-step approach
Onset Detection Function
Peak Detection
Thresholding
5 Methods
Energy Method
Spectral Difference Method
Complex Domain Method
Linear Prediction Method
Sinusoidal Modelling
6 Observations
7 Results
Yash Bhalgat (13D070014) Kalpesh Patil (130040019) Real-time Onset Detection in Musical Signals
Problem Statement
Motivation
Background
Multi-step approach
Methods
Observations
Results
Problem Statement
The aim of the project is to:
Study and present various state-of-art methods used in
real-time onset detection in audio (music) signals.
Formulation of ODFs (Onset-detection functions) by different
techniques and using their peaks for the localization of onsets
in the signals.
Yash Bhalgat (13D070014) Kalpesh Patil (130040019) Real-time Onset Detection in Musical Signals
Problem Statement
Motivation
Background
Multi-step approach
Methods
Observations
Results
Motivation
Onset detection is very useful in temporal segmentation of
audio signals, which is an important step in
beat-synchronous analysis
Onsets also play a crucial role in score following. It is the
synchronisation of a computer with a performer playing a
known musical score.
Score following is still an active area of research which stands at
the heart of AI, pattern recognition and signal processing!
Yash Bhalgat (13D070014) Kalpesh Patil (130040019) Real-time Onset Detection in Musical Signals
Problem Statement
Motivation
Background
Multi-step approach
Methods
Observations
Results
Background
Onsets: instant marking the beginning
of a transient or a note.
Transient: short interval during which
the signal behaves in a relatively
unpredictable way.
Attack: The time interval during which
the amplitude envelope increases
Yash Bhalgat (13D070014) Kalpesh Patil (130040019) Real-time Onset Detection in Musical Signals
Problem Statement
Motivation
Background
Multi-step approach
Methods
Observations
Results
Onset Detection Function
Peak Detection
Thresholding
Onset Detection Function
Onset Detection Functions
- Highly subsampled detection sequence
. showing the occurrence of transients
- A measure of the unpredictability of
. that frame indicating onsets
- Vector passed to peak detection
. algorithm for onset detection
Peak Detection
Threholding
Yash Bhalgat (13D070014) Kalpesh Patil (130040019) Real-time Onset Detection in Musical Signals
Problem Statement
Motivation
Background
Multi-step approach
Methods
Observations
Results
Onset Detection Function
Peak Detection
Thresholding
Peak Detection
Onset Detection Functions
Peak Detection
- Appropriate ODFs give identifiable
peaks at the onsets or abrupt events
- Identify local maxima in ODF
- Comparing current ODF value with
neighbouring sample values
(this results in latency)
Threholding
Yash Bhalgat (13D070014) Kalpesh Patil (130040019) Real-time Onset Detection in Musical Signals
Problem Statement
Motivation
Background
Multi-step approach
Methods
Observations
Results
Onset Detection Function
Peak Detection
Thresholding
Thresholding
Onset Detection Functions
Peak Detection
Threholding
threshn = λ × median(O[nm]) + α × mean(O[nm]) + N
O[nm] is the previous m values of the ODF at frame n
Every ODF peak that is above this threshold is taken to be a
note onset. See figure below for demo illustration.
Yash Bhalgat (13D070014) Kalpesh Patil (130040019) Real-time Onset Detection in Musical Signals
Problem Statement
Motivation
Background
Multi-step approach
Methods
Observations
Results
Onset Detection Function
Peak Detection
Thresholding
Thresholding
Yash Bhalgat (13D070014) Kalpesh Patil (130040019) Real-time Onset Detection in Musical Signals
Problem Statement
Motivation
Background
Multi-step approach
Methods
Observations
Results
Energy Method
Spectral Difference Method
Complex Domain Method
Linear Prediction Method
Sinusoidal Modelling
Energy Method
Most simple and computationally efficient
E[n] =
N
m=0
x(m)2
Onsets often have more energy than the steady-state
component of the note, because that is when the excitation is
applied
Larger changes in the amplitude envelope of the signal are
expected to coincide with onset locations
ODFE (n) = |E(n) − E(n − 1)|
Yash Bhalgat (13D070014) Kalpesh Patil (130040019) Real-time Onset Detection in Musical Signals
Problem Statement
Motivation
Background
Multi-step approach
Methods
Observations
Results
Energy Method
Spectral Difference Method
Complex Domain Method
Linear Prediction Method
Sinusoidal Modelling
Spectral Difference Method
Successful in detecting onsets in polyphonic signals (multiple
notes simultaneously) and ’soft’ onsets created by instruments
which do not have a percussive attack
X(k, n) =
N−1
m=0
x(m)w(m)e
−2jπmk
N
Spectral difference ODF (ODFSD) is calculated by examining
frame-to-frame changes in the Short-Time Fourier Transform
ODFSD(n) =
N/2
k=0
||X(k, n)| − |X(k, n − 1)||
Yash Bhalgat (13D070014) Kalpesh Patil (130040019) Real-time Onset Detection in Musical Signals
Problem Statement
Motivation
Background
Multi-step approach
Methods
Observations
Results
Energy Method
Spectral Difference Method
Complex Domain Method
Linear Prediction Method
Sinusoidal Modelling
Complex Domain Method
Combined magnitude and phase information
Magnitude prediction remains same. Assuming a constant
rate of phase change between frames for phase prediction:
ˆR(k, n) = |X(k, n − 1)|
ˆφ(k, n) = princarg[2φ(k, n − 1) − φ(k, n − 2)]
Euclidian distances in predicted and actual phasors gives ODF:
Γ(k, n) = ˆR(k, n)
2
+R(k, n)
2
−2R(k, n) ˆR(k, n) cos(φ(k, n)−ˆφ(k, n))
ODFCD(n) =
N/2
k=0
Γ(n, k)
Yash Bhalgat (13D070014) Kalpesh Patil (130040019) Real-time Onset Detection in Musical Signals
Problem Statement
Motivation
Background
Multi-step approach
Methods
Observations
Results
Energy Method
Spectral Difference Method
Complex Domain Method
Linear Prediction Method
Sinusoidal Modelling
Linear Prediction Method
LP “error”’ is useful in creating ODFs.
ODF is then the absolute value of the differences between the
actual frame measurements and the LP predictions
The ODF values are low when the LP prediction is accurate,
but larger in regions of the signal that are more unpredictable,
which should correspond with note onset locations.
All the previous methods can be combined with LP prediction
to give better results.
Yash Bhalgat (13D070014) Kalpesh Patil (130040019) Real-time Onset Detection in Musical Signals
Problem Statement
Motivation
Background
Multi-step approach
Methods
Observations
Results
Energy Method
Spectral Difference Method
Complex Domain Method
Linear Prediction Method
Sinusoidal Modelling
Linear Prediction Method
ˆx(n) =
p
k=1
akx(n − k)
Hence, if we apply LP to each of the methods, we get:
ODFELP(n) = |E(n) − PE (n)|
ODFSDLP(n) =
N/2
k=0
||X(k, n)| − |PSD(k, n)||
ODFCDLP(n) =
N/2
k=0
||Γ(k, n)| − |PCD(k, n)||
Yash Bhalgat (13D070014) Kalpesh Patil (130040019) Real-time Onset Detection in Musical Signals
Problem Statement
Motivation
Background
Multi-step approach
Methods
Observations
Results
Energy Method
Spectral Difference Method
Complex Domain Method
Linear Prediction Method
Sinusoidal Modelling
Sinusoidal Modelling
Fourier’s Theorem: Any periodic waveform can be modelled as the sum
of sinusoids at various amplitudes and harmonic frequencies.
Additive synthesis: adding together many sinusoidal components modu-
lated by relatively slowly varying amplitude and frequency envelopes
y(t) =
N
i=1
Ai (t)sin [θi (t)]
where θi (t) =
t
0
ω˙I (t) dt + θi (0)
Partial tracking: Calculating these parameters for each frame is referred
to as peak detection, while the process of connecting these peaks between
frames is called partial tracking.
Yash Bhalgat (13D070014) Kalpesh Patil (130040019) Real-time Onset Detection in Musical Signals
Problem Statement
Motivation
Background
Multi-step approach
Methods
Observations
Results
Energy Method
Spectral Difference Method
Complex Domain Method
Linear Prediction Method
Sinusoidal Modelling
Offline Processing Technique
Transient signals in the time domain can be mapped onto
sinusoidal signals in a frequency domain using DCT.
Not suitable for real time since DCT frame length required is
very large
A multi-resolution sinusoidal model is then applied to the
signal to isolate the harmonic component of the sound
Onset Location is determined by abrupt increase in energy of
the frame.
Yash Bhalgat (13D070014) Kalpesh Patil (130040019) Real-time Onset Detection in Musical Signals
Problem Statement
Motivation
Background
Multi-step approach
Methods
Observations
Results
Energy Method
Spectral Difference Method
Complex Domain Method
Linear Prediction Method
Sinusoidal Modelling
Online Processing Technique
Proposed in the paper
During the steady state of a musical note, the harmonic signal
component can be well modelled as a sum of sinusoids, whose
amplitude and frequency are slowly evovling in time.
Absolute values of the frame-to-frame differences in the
sinusoidal peak amplitudes and frequencies should be quite
low for steady state
Amplitudes of detected sinusoidal partials increases during
attack region
Large amplitude and/or frequency deviations in the partials
implies existence of Onsets
Yash Bhalgat (13D070014) Kalpesh Patil (130040019) Real-time Onset Detection in Musical Signals
Problem Statement
Motivation
Background
Multi-step approach
Methods
Observations
Results
Observations
Yash Bhalgat (13D070014) Kalpesh Patil (130040019) Real-time Onset Detection in Musical Signals
Problem Statement
Motivation
Background
Multi-step approach
Methods
Observations
Results
Observations
Yash Bhalgat (13D070014) Kalpesh Patil (130040019) Real-time Onset Detection in Musical Signals
Problem Statement
Motivation
Background
Multi-step approach
Methods
Observations
Results
Observations
Yash Bhalgat (13D070014) Kalpesh Patil (130040019) Real-time Onset Detection in Musical Signals
Problem Statement
Motivation
Background
Multi-step approach
Methods
Observations
Results
Results
Yash Bhalgat (13D070014) Kalpesh Patil (130040019) Real-time Onset Detection in Musical Signals
Problem Statement
Motivation
Background
Multi-step approach
Methods
Observations
Results
Thank You!
Yash Bhalgat (13D070014) Kalpesh Patil (130040019) Real-time Onset Detection in Musical Signals

More Related Content

What's hot

An Efficient DSP Based Implementation of a Fast Convolution Approach with non...
An Efficient DSP Based Implementation of a Fast Convolution Approach with non...An Efficient DSP Based Implementation of a Fast Convolution Approach with non...
An Efficient DSP Based Implementation of a Fast Convolution Approach with non...a3labdsp
 
DSP_FOEHU - Lec 07 - Digital Filters
DSP_FOEHU - Lec 07 - Digital FiltersDSP_FOEHU - Lec 07 - Digital Filters
DSP_FOEHU - Lec 07 - Digital FiltersAmr E. Mohamed
 
Semi-empirical Monte Carlo optical-gain modelling of Nuclear Imaging scintill...
Semi-empirical Monte Carlo optical-gain modelling of Nuclear Imaging scintill...Semi-empirical Monte Carlo optical-gain modelling of Nuclear Imaging scintill...
Semi-empirical Monte Carlo optical-gain modelling of Nuclear Imaging scintill...Anax Fotopoulos
 
Introduction to deep learning based voice activity detection
Introduction to deep learning based voice activity detectionIntroduction to deep learning based voice activity detection
Introduction to deep learning based voice activity detectionNAVER Engineering
 
Kernel-Based_Retrieval_of_Atmospheric_Profiles_from_IASI_Data.pdf
Kernel-Based_Retrieval_of_Atmospheric_Profiles_from_IASI_Data.pdfKernel-Based_Retrieval_of_Atmospheric_Profiles_from_IASI_Data.pdf
Kernel-Based_Retrieval_of_Atmospheric_Profiles_from_IASI_Data.pdfgrssieee
 
An upwind cell centred Finite Volume Method for nearly incompressible explici...
An upwind cell centred Finite Volume Method for nearly incompressible explici...An upwind cell centred Finite Volume Method for nearly incompressible explici...
An upwind cell centred Finite Volume Method for nearly incompressible explici...Jibran Haider
 
Large strain computational solid dynamics: An upwind cell centred Finite Volu...
Large strain computational solid dynamics: An upwind cell centred Finite Volu...Large strain computational solid dynamics: An upwind cell centred Finite Volu...
Large strain computational solid dynamics: An upwind cell centred Finite Volu...Jibran Haider
 
Adaptive filter
Adaptive filterAdaptive filter
Adaptive filterA. Shamel
 
EC8553 Discrete time signal processing
EC8553 Discrete time signal processing EC8553 Discrete time signal processing
EC8553 Discrete time signal processing ssuser2797e4
 
Solving The Shortest Path Tour Problem
Solving The Shortest Path Tour ProblemSolving The Shortest Path Tour Problem
Solving The Shortest Path Tour ProblemNozir Shokirov
 
Improving initial generations in pso algorithm for transportation network des...
Improving initial generations in pso algorithm for transportation network des...Improving initial generations in pso algorithm for transportation network des...
Improving initial generations in pso algorithm for transportation network des...ijcsit
 
Blind Beam-Hardening Correction from Poisson Measurements
Blind Beam-Hardening Correction from Poisson MeasurementsBlind Beam-Hardening Correction from Poisson Measurements
Blind Beam-Hardening Correction from Poisson MeasurementsAleksandar Dogandžić
 
Adaptive Noise Cancellation using Multirate Techniques
Adaptive Noise Cancellation using Multirate TechniquesAdaptive Noise Cancellation using Multirate Techniques
Adaptive Noise Cancellation using Multirate TechniquesIJERD Editor
 
Particle filtering in Computer Vision (2003)
Particle filtering in Computer Vision (2003)Particle filtering in Computer Vision (2003)
Particle filtering in Computer Vision (2003)zukun
 
2014.10.dartmouth
2014.10.dartmouth2014.10.dartmouth
2014.10.dartmouthQiqi Wang
 
Dsp U Lec08 Fir Filter Design
Dsp U   Lec08 Fir Filter DesignDsp U   Lec08 Fir Filter Design
Dsp U Lec08 Fir Filter Designtaha25
 

What's hot (19)

An Efficient DSP Based Implementation of a Fast Convolution Approach with non...
An Efficient DSP Based Implementation of a Fast Convolution Approach with non...An Efficient DSP Based Implementation of a Fast Convolution Approach with non...
An Efficient DSP Based Implementation of a Fast Convolution Approach with non...
 
DSP_FOEHU - Lec 07 - Digital Filters
DSP_FOEHU - Lec 07 - Digital FiltersDSP_FOEHU - Lec 07 - Digital Filters
DSP_FOEHU - Lec 07 - Digital Filters
 
Semi-empirical Monte Carlo optical-gain modelling of Nuclear Imaging scintill...
Semi-empirical Monte Carlo optical-gain modelling of Nuclear Imaging scintill...Semi-empirical Monte Carlo optical-gain modelling of Nuclear Imaging scintill...
Semi-empirical Monte Carlo optical-gain modelling of Nuclear Imaging scintill...
 
Introduction to deep learning based voice activity detection
Introduction to deep learning based voice activity detectionIntroduction to deep learning based voice activity detection
Introduction to deep learning based voice activity detection
 
Kernel-Based_Retrieval_of_Atmospheric_Profiles_from_IASI_Data.pdf
Kernel-Based_Retrieval_of_Atmospheric_Profiles_from_IASI_Data.pdfKernel-Based_Retrieval_of_Atmospheric_Profiles_from_IASI_Data.pdf
Kernel-Based_Retrieval_of_Atmospheric_Profiles_from_IASI_Data.pdf
 
QMC: Transition Workshop - Probabilistic Integrators for Deterministic Differ...
QMC: Transition Workshop - Probabilistic Integrators for Deterministic Differ...QMC: Transition Workshop - Probabilistic Integrators for Deterministic Differ...
QMC: Transition Workshop - Probabilistic Integrators for Deterministic Differ...
 
Seminaire ihp
Seminaire ihpSeminaire ihp
Seminaire ihp
 
An upwind cell centred Finite Volume Method for nearly incompressible explici...
An upwind cell centred Finite Volume Method for nearly incompressible explici...An upwind cell centred Finite Volume Method for nearly incompressible explici...
An upwind cell centred Finite Volume Method for nearly incompressible explici...
 
Large strain computational solid dynamics: An upwind cell centred Finite Volu...
Large strain computational solid dynamics: An upwind cell centred Finite Volu...Large strain computational solid dynamics: An upwind cell centred Finite Volu...
Large strain computational solid dynamics: An upwind cell centred Finite Volu...
 
Adaptive filter
Adaptive filterAdaptive filter
Adaptive filter
 
EC8553 Discrete time signal processing
EC8553 Discrete time signal processing EC8553 Discrete time signal processing
EC8553 Discrete time signal processing
 
Solving The Shortest Path Tour Problem
Solving The Shortest Path Tour ProblemSolving The Shortest Path Tour Problem
Solving The Shortest Path Tour Problem
 
Improving initial generations in pso algorithm for transportation network des...
Improving initial generations in pso algorithm for transportation network des...Improving initial generations in pso algorithm for transportation network des...
Improving initial generations in pso algorithm for transportation network des...
 
Blind Beam-Hardening Correction from Poisson Measurements
Blind Beam-Hardening Correction from Poisson MeasurementsBlind Beam-Hardening Correction from Poisson Measurements
Blind Beam-Hardening Correction from Poisson Measurements
 
Adaptive Noise Cancellation using Multirate Techniques
Adaptive Noise Cancellation using Multirate TechniquesAdaptive Noise Cancellation using Multirate Techniques
Adaptive Noise Cancellation using Multirate Techniques
 
Lb2519271931
Lb2519271931Lb2519271931
Lb2519271931
 
Particle filtering in Computer Vision (2003)
Particle filtering in Computer Vision (2003)Particle filtering in Computer Vision (2003)
Particle filtering in Computer Vision (2003)
 
2014.10.dartmouth
2014.10.dartmouth2014.10.dartmouth
2014.10.dartmouth
 
Dsp U Lec08 Fir Filter Design
Dsp U   Lec08 Fir Filter DesignDsp U   Lec08 Fir Filter Design
Dsp U Lec08 Fir Filter Design
 

Similar to Final presentation

A Non Parametric Estimation Based Underwater Target Classifier
A Non Parametric Estimation Based Underwater Target ClassifierA Non Parametric Estimation Based Underwater Target Classifier
A Non Parametric Estimation Based Underwater Target ClassifierCSCJournals
 
DPPs everywhere: repulsive point processes for Monte Carlo integration, signa...
DPPs everywhere: repulsive point processes for Monte Carlo integration, signa...DPPs everywhere: repulsive point processes for Monte Carlo integration, signa...
DPPs everywhere: repulsive point processes for Monte Carlo integration, signa...Advanced-Concepts-Team
 
Depth estimation of sound images using directional clustering and activation-...
Depth estimation of sound images using directional clustering and activation-...Depth estimation of sound images using directional clustering and activation-...
Depth estimation of sound images using directional clustering and activation-...Daichi Kitamura
 
An efficient peak valley detection based vad algorithm for robust detection o...
An efficient peak valley detection based vad algorithm for robust detection o...An efficient peak valley detection based vad algorithm for robust detection o...
An efficient peak valley detection based vad algorithm for robust detection o...csandit
 
AN EFFICIENT PEAK VALLEY DETECTION BASED VAD ALGORITHM FOR ROBUST DETECTION O...
AN EFFICIENT PEAK VALLEY DETECTION BASED VAD ALGORITHM FOR ROBUST DETECTION O...AN EFFICIENT PEAK VALLEY DETECTION BASED VAD ALGORITHM FOR ROBUST DETECTION O...
AN EFFICIENT PEAK VALLEY DETECTION BASED VAD ALGORITHM FOR ROBUST DETECTION O...cscpconf
 
An efficient peak valley detection based vad algorithm for robust detection o...
An efficient peak valley detection based vad algorithm for robust detection o...An efficient peak valley detection based vad algorithm for robust detection o...
An efficient peak valley detection based vad algorithm for robust detection o...csandit
 
My presentation in MST -11 International Workshop
My presentation in MST -11 International WorkshopMy presentation in MST -11 International Workshop
My presentation in MST -11 International WorkshopArpit Gupta
 
Sampling and Reconstruction (Online Learning).pptx
Sampling and Reconstruction (Online Learning).pptxSampling and Reconstruction (Online Learning).pptx
Sampling and Reconstruction (Online Learning).pptxHamzaJaved306957
 
Art%3 a10.1155%2fs1110865704401036
Art%3 a10.1155%2fs1110865704401036Art%3 a10.1155%2fs1110865704401036
Art%3 a10.1155%2fs1110865704401036SANDRA BALSECA
 
Sparsity based Joint Direction-of-Arrival and Offset Frequency Estimator
Sparsity based Joint Direction-of-Arrival and Offset Frequency EstimatorSparsity based Joint Direction-of-Arrival and Offset Frequency Estimator
Sparsity based Joint Direction-of-Arrival and Offset Frequency EstimatorJason Fernandes
 
IR UWB TOA Estimation Techniques and Comparison
IR UWB TOA Estimation Techniques and ComparisonIR UWB TOA Estimation Techniques and Comparison
IR UWB TOA Estimation Techniques and Comparisoninventionjournals
 
Spectral-, source-, connectivity- and network analysis of EEG and MEG data
Spectral-, source-, connectivity- and network analysis of EEG and MEG dataSpectral-, source-, connectivity- and network analysis of EEG and MEG data
Spectral-, source-, connectivity- and network analysis of EEG and MEG dataRobert Oostenveld
 
TH2_T03_5_PAU-SA_I_Ramos.ppt
TH2_T03_5_PAU-SA_I_Ramos.pptTH2_T03_5_PAU-SA_I_Ramos.ppt
TH2_T03_5_PAU-SA_I_Ramos.pptgrssieee
 
Depth Estimation of Sound Images Using Directional Clustering and Activation...
Depth Estimation of Sound Images Using  Directional Clustering and Activation...Depth Estimation of Sound Images Using  Directional Clustering and Activation...
Depth Estimation of Sound Images Using Directional Clustering and Activation...奈良先端大 情報科学研究科
 
Anomaly Detection in Sequences of Short Text Using Iterative Language Models
Anomaly Detection in Sequences of Short Text Using Iterative Language ModelsAnomaly Detection in Sequences of Short Text Using Iterative Language Models
Anomaly Detection in Sequences of Short Text Using Iterative Language ModelsCynthia Freeman
 
Cooperative Spectrum Sensing Technique Based on Blind Detection Method
Cooperative Spectrum Sensing Technique Based on Blind Detection MethodCooperative Spectrum Sensing Technique Based on Blind Detection Method
Cooperative Spectrum Sensing Technique Based on Blind Detection MethodINFOGAIN PUBLICATION
 
Slide Handouts with Notes
Slide Handouts with NotesSlide Handouts with Notes
Slide Handouts with NotesLeon Nguyen
 
OFFLINE SPIKE DETECTION USING TIME DEPENDENT ENTROPY
OFFLINE SPIKE DETECTION USING TIME DEPENDENT ENTROPY OFFLINE SPIKE DETECTION USING TIME DEPENDENT ENTROPY
OFFLINE SPIKE DETECTION USING TIME DEPENDENT ENTROPY ijbesjournal
 
Performance analysis of cooperative spectrum sensing using double dynamic thr...
Performance analysis of cooperative spectrum sensing using double dynamic thr...Performance analysis of cooperative spectrum sensing using double dynamic thr...
Performance analysis of cooperative spectrum sensing using double dynamic thr...IAESIJAI
 

Similar to Final presentation (20)

Lecture 3 sapienza 2017
Lecture 3 sapienza 2017Lecture 3 sapienza 2017
Lecture 3 sapienza 2017
 
A Non Parametric Estimation Based Underwater Target Classifier
A Non Parametric Estimation Based Underwater Target ClassifierA Non Parametric Estimation Based Underwater Target Classifier
A Non Parametric Estimation Based Underwater Target Classifier
 
DPPs everywhere: repulsive point processes for Monte Carlo integration, signa...
DPPs everywhere: repulsive point processes for Monte Carlo integration, signa...DPPs everywhere: repulsive point processes for Monte Carlo integration, signa...
DPPs everywhere: repulsive point processes for Monte Carlo integration, signa...
 
Depth estimation of sound images using directional clustering and activation-...
Depth estimation of sound images using directional clustering and activation-...Depth estimation of sound images using directional clustering and activation-...
Depth estimation of sound images using directional clustering and activation-...
 
An efficient peak valley detection based vad algorithm for robust detection o...
An efficient peak valley detection based vad algorithm for robust detection o...An efficient peak valley detection based vad algorithm for robust detection o...
An efficient peak valley detection based vad algorithm for robust detection o...
 
AN EFFICIENT PEAK VALLEY DETECTION BASED VAD ALGORITHM FOR ROBUST DETECTION O...
AN EFFICIENT PEAK VALLEY DETECTION BASED VAD ALGORITHM FOR ROBUST DETECTION O...AN EFFICIENT PEAK VALLEY DETECTION BASED VAD ALGORITHM FOR ROBUST DETECTION O...
AN EFFICIENT PEAK VALLEY DETECTION BASED VAD ALGORITHM FOR ROBUST DETECTION O...
 
An efficient peak valley detection based vad algorithm for robust detection o...
An efficient peak valley detection based vad algorithm for robust detection o...An efficient peak valley detection based vad algorithm for robust detection o...
An efficient peak valley detection based vad algorithm for robust detection o...
 
My presentation in MST -11 International Workshop
My presentation in MST -11 International WorkshopMy presentation in MST -11 International Workshop
My presentation in MST -11 International Workshop
 
Sampling and Reconstruction (Online Learning).pptx
Sampling and Reconstruction (Online Learning).pptxSampling and Reconstruction (Online Learning).pptx
Sampling and Reconstruction (Online Learning).pptx
 
Art%3 a10.1155%2fs1110865704401036
Art%3 a10.1155%2fs1110865704401036Art%3 a10.1155%2fs1110865704401036
Art%3 a10.1155%2fs1110865704401036
 
Sparsity based Joint Direction-of-Arrival and Offset Frequency Estimator
Sparsity based Joint Direction-of-Arrival and Offset Frequency EstimatorSparsity based Joint Direction-of-Arrival and Offset Frequency Estimator
Sparsity based Joint Direction-of-Arrival and Offset Frequency Estimator
 
IR UWB TOA Estimation Techniques and Comparison
IR UWB TOA Estimation Techniques and ComparisonIR UWB TOA Estimation Techniques and Comparison
IR UWB TOA Estimation Techniques and Comparison
 
Spectral-, source-, connectivity- and network analysis of EEG and MEG data
Spectral-, source-, connectivity- and network analysis of EEG and MEG dataSpectral-, source-, connectivity- and network analysis of EEG and MEG data
Spectral-, source-, connectivity- and network analysis of EEG and MEG data
 
TH2_T03_5_PAU-SA_I_Ramos.ppt
TH2_T03_5_PAU-SA_I_Ramos.pptTH2_T03_5_PAU-SA_I_Ramos.ppt
TH2_T03_5_PAU-SA_I_Ramos.ppt
 
Depth Estimation of Sound Images Using Directional Clustering and Activation...
Depth Estimation of Sound Images Using  Directional Clustering and Activation...Depth Estimation of Sound Images Using  Directional Clustering and Activation...
Depth Estimation of Sound Images Using Directional Clustering and Activation...
 
Anomaly Detection in Sequences of Short Text Using Iterative Language Models
Anomaly Detection in Sequences of Short Text Using Iterative Language ModelsAnomaly Detection in Sequences of Short Text Using Iterative Language Models
Anomaly Detection in Sequences of Short Text Using Iterative Language Models
 
Cooperative Spectrum Sensing Technique Based on Blind Detection Method
Cooperative Spectrum Sensing Technique Based on Blind Detection MethodCooperative Spectrum Sensing Technique Based on Blind Detection Method
Cooperative Spectrum Sensing Technique Based on Blind Detection Method
 
Slide Handouts with Notes
Slide Handouts with NotesSlide Handouts with Notes
Slide Handouts with Notes
 
OFFLINE SPIKE DETECTION USING TIME DEPENDENT ENTROPY
OFFLINE SPIKE DETECTION USING TIME DEPENDENT ENTROPY OFFLINE SPIKE DETECTION USING TIME DEPENDENT ENTROPY
OFFLINE SPIKE DETECTION USING TIME DEPENDENT ENTROPY
 
Performance analysis of cooperative spectrum sensing using double dynamic thr...
Performance analysis of cooperative spectrum sensing using double dynamic thr...Performance analysis of cooperative spectrum sensing using double dynamic thr...
Performance analysis of cooperative spectrum sensing using double dynamic thr...
 

Recently uploaded

Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)Suman Mia
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...RajaP95
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
High Profile Call Girls Dahisar Arpita 9907093804 Independent Escort Service ...
High Profile Call Girls Dahisar Arpita 9907093804 Independent Escort Service ...High Profile Call Girls Dahisar Arpita 9907093804 Independent Escort Service ...
High Profile Call Girls Dahisar Arpita 9907093804 Independent Escort Service ...Call girls in Ahmedabad High profile
 

Recently uploaded (20)

Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
High Profile Call Girls Dahisar Arpita 9907093804 Independent Escort Service ...
High Profile Call Girls Dahisar Arpita 9907093804 Independent Escort Service ...High Profile Call Girls Dahisar Arpita 9907093804 Independent Escort Service ...
High Profile Call Girls Dahisar Arpita 9907093804 Independent Escort Service ...
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 

Final presentation