I am reading a csv file in python and preparing a dataframe out of it. I have a Microsoft Kinect which is recording Arm Abduction exercise and generating this CSV file.
I have this array of Y-Coordinates of ElbowLeft joint. You can visualize this here. Now, I want to come up with a solution which can count number of peaks or local maximum in this array.
Can someone please help me to solve this problem?
scipy.signal.find_peaks_cwt
. – Ichnologyscipy.signal.find_peaks
may work better, unless you are really sure you need to use wavelet convolution. – Hylton