Created
November 1, 2018 14:50
-
-
Save romainmartinez/b72fb51f728839820b1e4a0d161200d5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# $ conda create -n test | |
# $ conda create -n test pyomeca -c pyomeca | |
from pathlib import Path | |
from pyomeca import Markers3d, Analogs3d | |
DATA_FOLDER = Path("/home/romain/Documents/codes/pyomeca/tests/data") | |
MARKERS_CSV = DATA_FOLDER / 'markers.csv' | |
MARKERS_ANALOGS_C3D = DATA_FOLDER / 'markers_analogs.c3d' | |
ANALOGS_CSV = DATA_FOLDER / 'analogs.csv' | |
markers_1 = Markers3d.from_csv(MARKERS_CSV, first_row=5, first_column=2, header=2, | |
idx=[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10], prefix=':') | |
print(markers_1[0, :, 0]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment