Open jgvictores opened 4 years ago
Note port names (/teo/rightHand
for either lacquey
or dextra
):
linear (m 1) (b 0)
): https://github.com/roboticslab-uc3m/tools/commit/f006bb0bb1681c9bfc42e4db03c61ce6035067c2 + https://github.com/roboticslab-uc3m/teo-configuration-files/commit/72c4a9e2832151b2aae768b99b7a74c3d0356b33Additionally pending some ":smile:2:smile:" on interfaces (currently exposes IPositionControl
) and maybe even some port naming.
- Dextra: pending
From Drive: sign-language
> iROS 2019
> csvs
> backups:
dextra_joint_record_20190211.zip
:
dextra_joint_record_step01_pinky_1_fwd.csv > dextra_joint_record_step01_pinky_fwd_all.csv
dextra_joint_record_step01_pinky_2_fwd.csv >> dextra_joint_record_step01_pinky_fwd_all.csv
dextra_joint_record_step01_pinky_3_fwd.csv >> dextra_joint_record_step01_pinky_fwd_all.csv
...
Until 199 lines/file * 10 files = 1990 lines.
calc
to sort.https://machinelearningmastery.com/moving-average-smoothing-for-time-series-forecasting-python/
from pandas import read_csv
from matplotlib import pyplot
series = read_csv('dextra_joint_record_step01_pinky_fwd_all_sorted.csv', header=0, index_col=0)
# Tail-rolling average transform
rolling = series.rolling(window=50)
rolling_mean = rolling.mean()
print(rolling_mean.head(10))
# plot original and transformed dataset
series.plot()
rolling_mean.plot(color='red')
pyplot.show()
RealToSimControlboard config files for robot end-effectors, as a follow-up of https://github.com/roboticslab-uc3m/tools/issues/15
NOTE: Before closing, edit https://github.com/roboticslab-uc3m/teo-configuration-files/blob/develop/share/applications/teoSimBase.xml (https://github.com/roboticslab-uc3m/teo-configuration-files/blob/5e0773dba56cd61ba98088a11965a44cde8a03f9/share/applications/yarpmanager/teoSimBase.xml) to invoke corresponding files (may split into none vs each end-effector).