robotic 0.3.2__cp312-cp312-manylinux2014_x86_64.whl → 0.3.3.dev0__cp312-cp312-manylinux2014_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of robotic might be problematic. Click here for more details.
- robotic/__init__.py +4 -1
- robotic/_robotic.pyi +45 -34
- robotic/_robotic.so +0 -0
- robotic/include/rai/Algo/RidgeRegression.h +1 -1
- robotic/include/rai/Core/arrayDouble.h +15 -4
- robotic/include/rai/Core/util.h +3 -0
- robotic/include/rai/DataGen/rndStableConfigs.h +1 -0
- robotic/include/rai/Geo/geo.h +4 -4
- robotic/include/rai/Geo/mesh.h +5 -5
- robotic/include/rai/Geo/pairCollision.h +1 -1
- robotic/include/rai/Geo/signedDistanceFunctions.h +2 -3
- robotic/include/rai/KOMO/komo.h +2 -0
- robotic/include/rai/KOMO/komo_NLP.h +2 -2
- robotic/include/rai/KOMO/manipTools.h +4 -0
- robotic/include/rai/KOMO/testProblems_KOMO.h +0 -7
- robotic/include/rai/Kin/kin_physx.h +6 -4
- robotic/include/rai/Kin/simulation.h +9 -4
- robotic/include/rai/LGP/LGP_TAMP_Abstraction.h +33 -0
- robotic/include/rai/LGP/LGP_Tool.h +4 -25
- robotic/include/rai/LGP/LGP_computers2.h +196 -0
- robotic/include/rai/LGP/NLP_Descriptor.h +5 -0
- robotic/include/rai/Optim/BayesOpt.h +3 -3
- robotic/include/rai/Optim/GlobalIterativeNewton.h +1 -1
- robotic/include/rai/Optim/NLP.h +7 -5
- robotic/include/rai/Optim/SlackGaussNewton.h +0 -10
- robotic/include/rai/Optim/constrained.h +1 -1
- robotic/include/rai/Optim/gradient.h +8 -6
- robotic/include/rai/Optim/lagrangian.h +3 -2
- robotic/include/rai/Optim/lbfgs.h +18 -0
- robotic/include/rai/Optim/liblbfgs.h +755 -0
- robotic/include/rai/Optim/m_LeastSquaresZeroOrder.h +38 -0
- robotic/include/rai/Optim/newton.h +3 -3
- robotic/include/rai/Optim/opt-ceres.h +2 -2
- robotic/include/rai/Optim/options.h +3 -2
- robotic/include/rai/Optim/primalDual.h +1 -1
- robotic/include/rai/Optim/testProblems_Opt.h +20 -8
- robotic/include/rai/Optim/utils.h +20 -79
- robotic/include/rai/Perception/pcl.h +10 -10
- robotic/librai.so +0 -0
- robotic/meshTool +0 -0
- robotic/rai-robotModels/panda/panda.g +9 -9
- robotic/rai-robotModels/panda/panda_withoutCollisionModels.g +3 -11
- robotic/rai-robotModels/pr2/pr2.g +5 -5
- robotic/rai-robotModels/pr2/pr2_clean.g +19 -19
- robotic/rai-robotModels/robotiq/robotiq_clean.g +2 -2
- robotic/rai-robotModels/scenarios/liftRing.g +2 -2
- robotic/rai-robotModels/scenarios/pandaSingle.g +1 -1
- robotic/rai-robotModels/tests/arm.g +15 -16
- robotic/ry-h5info +3 -12
- robotic/src/h5_helper.py +20 -5
- robotic/src/h5_helper.py~ +42 -0
- robotic/version.py +1 -1
- robotic-0.3.3.dev0.data/scripts/ry-h5info +23 -0
- {robotic-0.3.2.dist-info → robotic-0.3.3.dev0.dist-info}/METADATA +9 -9
- {robotic-0.3.2.dist-info → robotic-0.3.3.dev0.dist-info}/RECORD +64 -58
- robotic/test.py +0 -15
- robotic-0.3.2.data/scripts/ry-h5info +0 -32
- {robotic-0.3.2.data → robotic-0.3.3.dev0.data}/scripts/ry-bot +0 -0
- {robotic-0.3.2.data → robotic-0.3.3.dev0.data}/scripts/ry-info +0 -0
- {robotic-0.3.2.data → robotic-0.3.3.dev0.data}/scripts/ry-meshTool +0 -0
- {robotic-0.3.2.data → robotic-0.3.3.dev0.data}/scripts/ry-test +0 -0
- {robotic-0.3.2.data → robotic-0.3.3.dev0.data}/scripts/ry-urdfConvert.py +0 -0
- {robotic-0.3.2.data → robotic-0.3.3.dev0.data}/scripts/ry-view +0 -0
- {robotic-0.3.2.dist-info → robotic-0.3.3.dev0.dist-info}/WHEEL +0 -0
- {robotic-0.3.2.dist-info → robotic-0.3.3.dev0.dist-info}/licenses/LICENSE +0 -0
- {robotic-0.3.2.dist-info → robotic-0.3.3.dev0.dist-info}/top_level.txt +0 -0
robotic/src/h5_helper.py
CHANGED
|
@@ -2,30 +2,45 @@
|
|
|
2
2
|
|
|
3
3
|
import argparse
|
|
4
4
|
import h5py
|
|
5
|
+
import json
|
|
6
|
+
import ast
|
|
5
7
|
|
|
6
8
|
class H5Writer:
|
|
7
9
|
def __init__(self, filename):
|
|
8
10
|
self.fil = h5py.File(filename, 'w')
|
|
9
11
|
|
|
10
|
-
def write(self, name, data, dtype = '
|
|
12
|
+
def write(self, name, data, dtype = 'float64'):
|
|
11
13
|
self.fil.create_dataset(name, data=data, dtype=dtype)
|
|
12
14
|
|
|
15
|
+
def write_dict(self, name, data):
|
|
16
|
+
self.write(name, bytearray(json.dumps(data), 'utf-8'), dtype='int8')
|
|
17
|
+
|
|
13
18
|
class H5Reader:
|
|
14
19
|
def __init__(self, filename):
|
|
15
20
|
self.fil = h5py.File(filename, 'r')
|
|
16
21
|
|
|
17
|
-
def print_attrs(self,name, obj):
|
|
22
|
+
def print_attrs(self, name, obj):
|
|
18
23
|
if isinstance(obj, h5py.Dataset):
|
|
19
|
-
print(' ',
|
|
24
|
+
print(' ', obj.name, obj.shape, obj.dtype, f'{obj.size*obj.dtype.itemsize/1024:.2f}kB')
|
|
20
25
|
if obj.dtype=='int8':
|
|
21
|
-
|
|
26
|
+
str = ''.join([chr(x) for x in obj[()]])
|
|
27
|
+
print(' ', str)
|
|
22
28
|
elif obj.size<20:
|
|
23
29
|
print(' ', obj[()])
|
|
24
30
|
else:
|
|
25
|
-
print('---', name)
|
|
31
|
+
print('---', obj.name)
|
|
26
32
|
|
|
27
33
|
def print_info(self):
|
|
28
34
|
self.fil.visititems(self.print_attrs)
|
|
29
35
|
|
|
30
36
|
def read(self, name):
|
|
31
37
|
return self.fil[name][()]
|
|
38
|
+
|
|
39
|
+
def read_dict(self, name):
|
|
40
|
+
obj = self.fil[name]
|
|
41
|
+
assert obj.dtype=='int8'
|
|
42
|
+
str = ''.join([chr(x) for x in obj[()]])
|
|
43
|
+
d = ast.literal_eval(str)
|
|
44
|
+
return d
|
|
45
|
+
|
|
46
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
|
|
3
|
+
import argparse
|
|
4
|
+
import h5py
|
|
5
|
+
import ast
|
|
6
|
+
|
|
7
|
+
class H5Writer:
|
|
8
|
+
def __init__(self, filename):
|
|
9
|
+
self.fil = h5py.File(filename, 'w')
|
|
10
|
+
|
|
11
|
+
def write(self, name, data, dtype = 'float64'):
|
|
12
|
+
self.fil.create_dataset(name, data=data, dtype=dtype)
|
|
13
|
+
|
|
14
|
+
class H5Reader:
|
|
15
|
+
def __init__(self, filename):
|
|
16
|
+
self.fil = h5py.File(filename, 'r')
|
|
17
|
+
|
|
18
|
+
def print_attrs(self, name, obj):
|
|
19
|
+
if isinstance(obj, h5py.Dataset):
|
|
20
|
+
print(' ', obj.name, obj.shape, obj.dtype, f'{obj.size*obj.dtype.itemsize/1024:.2f}kB')
|
|
21
|
+
if obj.dtype=='int8':
|
|
22
|
+
str = ''.join([chr(x) for x in obj[()]])
|
|
23
|
+
print(' ', str)
|
|
24
|
+
elif obj.size<20:
|
|
25
|
+
print(' ', obj[()])
|
|
26
|
+
else:
|
|
27
|
+
print('---', obj.name)
|
|
28
|
+
|
|
29
|
+
def print_info(self):
|
|
30
|
+
self.fil.visititems(self.print_attrs)
|
|
31
|
+
|
|
32
|
+
def read(self, name):
|
|
33
|
+
return self.fil[name][()]
|
|
34
|
+
|
|
35
|
+
def read_dict(self, name):
|
|
36
|
+
obj = self.fil[name]
|
|
37
|
+
assert obj.dtype=='int8'
|
|
38
|
+
str = ''.join([chr(x) for x in obj[()]])
|
|
39
|
+
d = ast.literal_eval(str)
|
|
40
|
+
return d
|
|
41
|
+
|
|
42
|
+
|
robotic/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '0.3.
|
|
1
|
+
__version__ = '0.3.3.dev0'
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
#!python
|
|
2
|
+
|
|
3
|
+
import argparse
|
|
4
|
+
import h5py
|
|
5
|
+
from robotic.src.h5_helper import *
|
|
6
|
+
|
|
7
|
+
parser = argparse.ArgumentParser(description='h5-file info')
|
|
8
|
+
|
|
9
|
+
parser.add_argument('FILE', type=str,
|
|
10
|
+
help='h5-file name')
|
|
11
|
+
|
|
12
|
+
def main():
|
|
13
|
+
args = parser.parse_args()
|
|
14
|
+
|
|
15
|
+
print('=== file', args.FILE)
|
|
16
|
+
try:
|
|
17
|
+
h5 = H5Reader(args.FILE)
|
|
18
|
+
h5.print_info()
|
|
19
|
+
except KeyboardInterrupt:
|
|
20
|
+
sys.exit(1)
|
|
21
|
+
|
|
22
|
+
if __name__ == "__main__":
|
|
23
|
+
main()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: robotic
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.3.dev0
|
|
4
4
|
Summary: Robotic Control Interface & Manipulation Planning Library
|
|
5
5
|
Home-page: https://github.com/MarcToussaint/robotic/
|
|
6
6
|
Author: Marc Toussaint
|
|
@@ -60,10 +60,10 @@ Lab](https://argmin.lis.tu-berlin.de/)) operate our robots.
|
|
|
60
60
|
* Test in a clean ubuntu:latest docker (starting with `xhost +local:root && docker run -it --env="DISPLAY" --network host ubuntu:latest`):
|
|
61
61
|
|
|
62
62
|
apt update
|
|
63
|
-
env DEBIAN_FRONTEND=noninteractive apt install --yes liblapack3 freeglut3-dev libglu1-mesa libxrandr2 libfreetype6 fonts-ubuntu python3 python3-
|
|
63
|
+
env DEBIAN_FRONTEND=noninteractive apt install --yes liblapack3 freeglut3-dev libglu1-mesa libxrandr2 libfreetype6 fonts-ubuntu python3 python3-venv
|
|
64
64
|
cd /usr/lib/x86_64-linux-gnu/ && ln -s libglut.so.3.12 libglut.so.3
|
|
65
|
-
python3 -m venv
|
|
66
|
-
source
|
|
65
|
+
python3 -m venv ~/.local/venv
|
|
66
|
+
source ~/.local/venv/bin/activate
|
|
67
67
|
pip install robotic numpy
|
|
68
68
|
ry-info
|
|
69
69
|
ry-test
|
|
@@ -81,7 +81,7 @@ This assumes a standard Ubuntu 24.04 (or 22.04, 20.04) machine.
|
|
|
81
81
|
libx11-dev libglu1-mesa-dev libglfw3-dev libglew-dev freeglut3-dev libpng-dev libassimp-dev \
|
|
82
82
|
python3-dev python3 python3-pip
|
|
83
83
|
|
|
84
|
-
python3 -m pip install
|
|
84
|
+
python3 -m pip install numpy pybind11 pybind11-stubgen
|
|
85
85
|
|
|
86
86
|
* Install some external libs by source. You can skip librealsense and
|
|
87
87
|
libfranka if you disable below. (To speed up compilation, e.g., set
|
|
@@ -96,7 +96,7 @@ This assumes a standard Ubuntu 24.04 (or 22.04, 20.04) machine.
|
|
|
96
96
|
./install.sh libann
|
|
97
97
|
./install.sh physx
|
|
98
98
|
./install.sh librealsense
|
|
99
|
-
./install.sh libfranka ## for OLD frankas instead: ./install.sh -v 0.
|
|
99
|
+
./install.sh libfranka ## for OLD frankas instead: ./install.sh -v 0.8.0 libfranka (and you need to patch it...)
|
|
100
100
|
|
|
101
101
|
* Clone, compile and install this repo (note the USE_REALSENSE and USE_LIBFRANKA options!):
|
|
102
102
|
|
|
@@ -149,8 +149,8 @@ make wheels
|
|
|
149
149
|
|
|
150
150
|
* Outside of docker, install locally with pip or push wheels to pypi
|
|
151
151
|
```
|
|
152
|
-
python3.8 -m pip install
|
|
153
|
-
python3.10 -m pip install
|
|
152
|
+
python3.8 -m pip install dist/robotic-*cp38*.whl --force-reinstall
|
|
153
|
+
python3.10 -m pip install dist/robotic-*cp310*.whl --force-reinstall
|
|
154
154
|
# or
|
|
155
155
|
twine upload dist/*.whl --repository robotic
|
|
156
156
|
```
|
|
@@ -161,7 +161,7 @@ twine upload dist/*.whl --repository robotic
|
|
|
161
161
|
|
|
162
162
|
* Get the binary lib by installing the pip package:
|
|
163
163
|
```
|
|
164
|
-
python3 -m pip install
|
|
164
|
+
python3 -m pip install robotic
|
|
165
165
|
```
|
|
166
166
|
* Get the sources by cloning this repo recursively:
|
|
167
167
|
```
|
|
@@ -1,25 +1,24 @@
|
|
|
1
1
|
robotic/DataGen.pyi,sha256=qDQjATpbIgFvOrWk7F3ZTVbOuyXjT5nwHxrsRfGxWRU,3716
|
|
2
|
-
robotic/__init__.py,sha256=
|
|
3
|
-
robotic/_robotic.pyi,sha256=
|
|
4
|
-
robotic/_robotic.so,sha256=
|
|
5
|
-
robotic/librai.so,sha256=
|
|
2
|
+
robotic/__init__.py,sha256=h8LG-Fle7lAtkJ-ZE1u5kWTyuayhugNxtFX9T_JKQGY,476
|
|
3
|
+
robotic/_robotic.pyi,sha256=CNcPSa4rb7DrSq6eB9apCXAKiog__UC_UQ_x6OKH8ko,77107
|
|
4
|
+
robotic/_robotic.so,sha256=1WkgCMevTyoyrgIhkLw7uqGh-oiW5VlTFXPqA2rqh-c,1271616
|
|
5
|
+
robotic/librai.so,sha256=Ugw7BpEwUYJR6ZjymnwKUJb96jwc22R12i_K7AFxpQQ,38869664
|
|
6
6
|
robotic/manipulation.py,sha256=0B7UzU9J7b4f19thz67TbvknoncxffQEMHSBB6ez1Jg,22279
|
|
7
|
-
robotic/meshTool,sha256=
|
|
7
|
+
robotic/meshTool,sha256=PL2Vd43ruYmPzk9i91t_Xo4zWMWFn-mHLGXMDG8h_O4,52176
|
|
8
8
|
robotic/mujoco-import.py,sha256=8eC8ldlFwnYQfqII3FVdWEQ7zd1PkSdAF-oyryIQtkY,231
|
|
9
9
|
robotic/nlp.py,sha256=n9_hOj3i707DdL_r49Yd2eWyjsSOahW8DmJrEhQlNFw,3200
|
|
10
10
|
robotic/render.py,sha256=OE1dvyWHD7Oyzk4wlhXZ7m3v3xxa3zAL5_LCV1RgJXk,4662
|
|
11
11
|
robotic/ry-bot,sha256=nd2yWqaDsFbwAmr7ySdOjq06ek0E1FMHTxPRO-7e2Q8,2294
|
|
12
|
-
robotic/ry-h5info,sha256=
|
|
12
|
+
robotic/ry-h5info,sha256=zfGJiyYJIVw1QWWQErJIvaKA1oVJuKwllafWRSoZFFk,463
|
|
13
13
|
robotic/ry-info,sha256=GRj4oMCgTCGRF2wxtYxiFvETROB92rwwtUFb6S_Eo7g,439
|
|
14
14
|
robotic/ry-meshTool,sha256=h4f4wFPNaey3ziz870SrEvy6SsQSL-ZnR_cH3UuAZxE,101
|
|
15
15
|
robotic/ry-test,sha256=U54-scN4o_glloiDKjSFKJ7QsUTPgvzia6qnE4-22Js,995
|
|
16
16
|
robotic/ry-urdfConvert.py,sha256=8Efnq3PU202rrZrVEZiGwzFOJdvrLjTJ2q-gnY6-tiU,2556
|
|
17
17
|
robotic/ry-view,sha256=T1Omn1QS7cNAtjQhBjMJTNz7aW5FgoOf9vBIfW0mFME,613
|
|
18
|
-
robotic/test.py,sha256=8hiDRB2kB37hE5cZ7h26AJDnSGYb1y8DwOrcEGD_5Hc,620
|
|
19
18
|
robotic/test.pyi,sha256=vVxwRSerjUG4bpB7pIhof7ZatrBqwg3Bj5voywa-YTI,917
|
|
20
|
-
robotic/version.py,sha256=
|
|
19
|
+
robotic/version.py,sha256=AZh_tN5EDwYUPKcfk1bZQUa_cCS9nX-cq7j3-bwbswY,27
|
|
21
20
|
robotic/include/rai/Algo/MLcourse.h,sha256=TGkAJWC5ollGfPw0-gcYL0TZeDJiHtWFzkHSMK8_lqU,1828
|
|
22
|
-
robotic/include/rai/Algo/RidgeRegression.h,sha256=
|
|
21
|
+
robotic/include/rai/Algo/RidgeRegression.h,sha256=SndbBtDte12eUAEFwagmg-xjXIA11z6iTTBxJd_fKAo,3742
|
|
23
22
|
robotic/include/rai/Algo/SplineCtrlFeed.h,sha256=yILBoUh9Ce0YtzGVZeAKmdUqsf0xeCGjXGC8bXNzZ3o,3339
|
|
24
23
|
robotic/include/rai/Algo/ann.h,sha256=XCQSzJIg_cPzZBKgIJMuHvBLc3ayD1FzSFqh2s_1TnM,1294
|
|
25
24
|
robotic/include/rai/Algo/dataNeighbored.h,sha256=NfwS4xJElLxX8t5cYY3xiTLXgJyMsHoaD-J0kT2GXqE,1208
|
|
@@ -48,27 +47,27 @@ robotic/include/rai/Control/ctrlMsg.h,sha256=uGuwAaKM1UsQW3hTNv4AihW99MJMuow4cxa
|
|
|
48
47
|
robotic/include/rai/Control/timingOpt.h,sha256=Ne_IH8QuFCID0Sy88LS5i3qkp1nL1FbIgREqSjRctz0,2045
|
|
49
48
|
robotic/include/rai/Core/array.h,sha256=YcI48DcBMUYgdlXP4V1dV6juBUe1iCtbKoxWjp4nCxI,26125
|
|
50
49
|
robotic/include/rai/Core/array.ipp,sha256=DNmfosznj0jF-5lXTb8NUejfrVfs_Fw3O0IvvnDfF7M,63560
|
|
51
|
-
robotic/include/rai/Core/arrayDouble.h,sha256=
|
|
50
|
+
robotic/include/rai/Core/arrayDouble.h,sha256=G_Ez003lsxJkIc4NYmKqPr1FIXZ7Saj3ItHJqsPKk7w,29159
|
|
52
51
|
robotic/include/rai/Core/defines.h,sha256=Y5YF92lo5dV3r0W6DFCapY7_7vUk9dS1po6ixtNxGIg,6896
|
|
53
52
|
robotic/include/rai/Core/graph.h,sha256=XkRLNuU8Aav9FMm-zgdWP6025NN5gauO1HFkWB2-e34,20351
|
|
54
53
|
robotic/include/rai/Core/h5.h,sha256=cfs8cew5QYpOxbWFZHV9TXVh5_dEJdFF1-aGZVR54EY,1162
|
|
55
54
|
robotic/include/rai/Core/thread.h,sha256=oCcqgzPHYoVwCbarDibmbTwxKxnGGwdK0e0re3yWfPY,18303
|
|
56
|
-
robotic/include/rai/Core/util.h,sha256=
|
|
55
|
+
robotic/include/rai/Core/util.h,sha256=6cKEdQNwoZMDm4iFt8fHWzxpfZTpg1heukdGWG4j4cU,18931
|
|
57
56
|
robotic/include/rai/Core/util.ipp,sha256=soCVdpzWTpLL9i6rilFPNGozHZP40yhkmuXul7gHC7o,2157
|
|
58
57
|
robotic/include/rai/Core/lapack/blaswrap.h,sha256=jl8W6GwBGMiU-ND9ILeKqWlIvryw7AsIydPUCQGT_ew,3750
|
|
59
58
|
robotic/include/rai/Core/lapack/cblas.h,sha256=4bSmMzZ4idIPlmcwjw5HuwY1cs5RU73ZwmfydSpaBdk,32367
|
|
60
59
|
robotic/include/rai/Core/lapack/clapack.h,sha256=8rLteHzzGpKhJZXv4Eom9mk8lzbwRwjJuIqJuR1eePc,343373
|
|
61
60
|
robotic/include/rai/Core/lapack/lapacke.h,sha256=cpP6MEjkLGyhS8mV6ysRlTVeUam6f8zBgFUJB1phuwM,1045408
|
|
62
|
-
robotic/include/rai/DataGen/rndStableConfigs.h,sha256=
|
|
61
|
+
robotic/include/rai/DataGen/rndStableConfigs.h,sha256=RdAD1kDsKic7WwBvLtFyIVnGKdtGqhxekBKjoeeUd40,403
|
|
63
62
|
robotic/include/rai/DataGen/shapenetGrasps.h,sha256=NlpKWicgaylzw1si7EPzeM7cE_-V9jvhB4mK1Slmt8E,1620
|
|
64
63
|
robotic/include/rai/Geo/assimpInterface.h,sha256=2Jg7v2GZ83nz4kkgPLzbSWTIBmL9nZg-LhMlWcjiF_o,1055
|
|
65
64
|
robotic/include/rai/Geo/depth2PointCloud.h,sha256=0mXJnTk0sMB--KDE9CO_2gKgGw4gHXUe7xg6DcROhvk,1168
|
|
66
65
|
robotic/include/rai/Geo/fclInterface.h,sha256=d89JFW3WKI64gOdQSGs6uFdE7NcMavNg89BMHhzMDac,984
|
|
67
|
-
robotic/include/rai/Geo/geo.h,sha256=
|
|
68
|
-
robotic/include/rai/Geo/mesh.h,sha256=
|
|
69
|
-
robotic/include/rai/Geo/pairCollision.h,sha256=
|
|
66
|
+
robotic/include/rai/Geo/geo.h,sha256=VE0uVsFOhfHCWlfGVQBjT6_iyteLAzWvVJEzUPVqL_Y,14907
|
|
67
|
+
robotic/include/rai/Geo/mesh.h,sha256=HrdwBu2sX_xFkYmdf1d89lGa_2aq3rvDgrNUhnRY478,6940
|
|
68
|
+
robotic/include/rai/Geo/pairCollision.h,sha256=TeV_Vpu9MuXG9wwI0zOyOZX7l54gAjxKnrJJyLR2gDU,4258
|
|
70
69
|
robotic/include/rai/Geo/qhull.h,sha256=dRAAHIdvujPPW1fXW4hXMjgixpBDajDg-y_OX1JMi_0,1890
|
|
71
|
-
robotic/include/rai/Geo/signedDistanceFunctions.h,sha256=
|
|
70
|
+
robotic/include/rai/Geo/signedDistanceFunctions.h,sha256=pbq5Nq6-HiRgJWabcJAoNWqQ_sY9_Hx_JFDo6tA81mI,4721
|
|
72
71
|
robotic/include/rai/Geo/stbImage.h,sha256=R5MRPs3KLL-GOipzAN_jdV-pdlBCTkUFaA5LnYEIElw,100
|
|
73
72
|
robotic/include/rai/Geo/stb_image.h,sha256=WnfQN6Iosji-LSuiVLoekjaY6NVnuy7XJnlkRTVR3KA,251786
|
|
74
73
|
robotic/include/rai/Geo/testProblems_Geo.h,sha256=PAO_y2X6KFjbfpCBoy59GkVq_A82ovg-stLO3EJ7iuE,927
|
|
@@ -93,16 +92,16 @@ robotic/include/rai/Gui/color.h,sha256=4ElBkpWgwBuqQEFD4Mdhv_afZE4ul6NkptwFQ2oDS
|
|
|
93
92
|
robotic/include/rai/Gui/opengl.h,sha256=NipYBJ40hqC6K7xqmB0UYdU4rX_zQgnh7rsi5_Fg0-8,9101
|
|
94
93
|
robotic/include/rai/Gui/plot.h,sha256=Y_X9-V6IExvFafNzkG88O2wUGDCCnarUzpi5b0DKBcQ,2346
|
|
95
94
|
robotic/include/rai/KOMO/PathSmoother.h,sha256=y-t3yVEZvxfQIs8_EA-WI7FJ_RzfbG8TEfdiNAruuUI,813
|
|
96
|
-
robotic/include/rai/KOMO/komo.h,sha256=
|
|
97
|
-
robotic/include/rai/KOMO/komo_NLP.h,sha256=
|
|
98
|
-
robotic/include/rai/KOMO/manipTools.h,sha256=
|
|
95
|
+
robotic/include/rai/KOMO/komo.h,sha256=n2waF70m3GF8c-wOKmKD-kR5R1eFJQ9brwgZZJQVs-Q,13484
|
|
96
|
+
robotic/include/rai/KOMO/komo_NLP.h,sha256=GX4bxbAfbV_z42XrLmS0drLPcsIZiioRkWhF3UuhZno,3681
|
|
97
|
+
robotic/include/rai/KOMO/manipTools.h,sha256=rPdkUN7UkbU4OkV4asGjTmEFgcnYkRdV-RIf6ooX60Y,4587
|
|
99
98
|
robotic/include/rai/KOMO/objective.h,sha256=Cl4-KjheRMNWoh_xFas5tLWMKSMlJf-HLDihfqvfcSw,2704
|
|
100
99
|
robotic/include/rai/KOMO/pathTools.h,sha256=w0Wq6BGLBxG1LAZQBDmmPWTXzwxW3RHj2EX1cm92WeE,3288
|
|
101
100
|
robotic/include/rai/KOMO/skeleton.h,sha256=NPaMfUMC_sUd3AjlLHTFpxWH4QtnKP_zzvHb2YvEigI,4437
|
|
102
101
|
robotic/include/rai/KOMO/skeletonSymbol.h,sha256=mrPqRn_1i4PuqbkQBhKEYc5WPEGqPjBN6TvwZxZ5e7A,1261
|
|
103
102
|
robotic/include/rai/KOMO/splined.h,sha256=G_fu9gXCboJLkwhwu77F6F3Ei6deqzbvkgP8r9kiNL8,903
|
|
104
103
|
robotic/include/rai/KOMO/switch.h,sha256=teNNnHFe4h9W5rLlL3TFBsq97ni-RUEhcxw4uVPYR1g,1850
|
|
105
|
-
robotic/include/rai/KOMO/testProblems_KOMO.h,sha256=
|
|
104
|
+
robotic/include/rai/KOMO/testProblems_KOMO.h,sha256=OH1zWcD-hIXsml2RkLIvl5eyi69WuLKqWPdqWjWWFI0,2805
|
|
106
105
|
robotic/include/rai/Kin/F_LeapCost.h,sha256=wNAUNgAJjLirMurF67BlFLHtjyuXy1EPr--9XLBe6Wk,556
|
|
107
106
|
robotic/include/rai/Kin/F_collisions.h,sha256=Atq9LPVOkEuMF-kSHk78cGjaJYwDIbvrTxHmLBJw3yk,2092
|
|
108
107
|
robotic/include/rai/Kin/F_forces.h,sha256=tHyBQcKhi4ZdsHoBU5bu7kLWVm611SfEYG_o-vMSDN0,6694
|
|
@@ -122,39 +121,45 @@ robotic/include/rai/Kin/kin.h,sha256=uu2rwBXk0vMLH4NzXJTBHyV2sRRXK_zHrnoy61zh0qc
|
|
|
122
121
|
robotic/include/rai/Kin/kin_bullet.h,sha256=y8aApXpXY4bD5QN_WmDAU2vNEvvbdo1Rd4zY7qo-FKE,1970
|
|
123
122
|
robotic/include/rai/Kin/kin_feather.h,sha256=o-hOJA8UcmIBKx_qPzoG9R7fxzz-4zhBNMBmBTK21oA,1627
|
|
124
123
|
robotic/include/rai/Kin/kin_ode.h,sha256=zwB8Le1WMGRkQBc9bssndJICkjO1lZ_y1aZKCwP4c1Y,3686
|
|
125
|
-
robotic/include/rai/Kin/kin_physx.h,sha256=
|
|
124
|
+
robotic/include/rai/Kin/kin_physx.h,sha256=CxsmnWHQMgJBbhA5iajLpOjxpCkd9243tlVyYkNRgOM,1950
|
|
126
125
|
robotic/include/rai/Kin/proxy.h,sha256=jfFQrvokqvt8bGYEzGQoD2ZpnuWuLzCeOjFfUvdxcx0,1473
|
|
127
|
-
robotic/include/rai/Kin/simulation.h,sha256=
|
|
126
|
+
robotic/include/rai/Kin/simulation.h,sha256=YLUnczvMUrp_3vsxEzmCym4LFK8mrnSs59c6esmjvQo,5449
|
|
128
127
|
robotic/include/rai/Kin/viewer.h,sha256=XhfZ3QUYdCuye3NnCwPe2XnoJAqnf9RCtMAZLsc3fd4,2432
|
|
129
128
|
robotic/include/rai/LGP/LGP_SkeletonTool.h,sha256=T4lXAUxY2QFo_ETZEm7RqRzfmU6NAHdVcow8qj_8-9Y,3240
|
|
130
|
-
robotic/include/rai/LGP/
|
|
129
|
+
robotic/include/rai/LGP/LGP_TAMP_Abstraction.h,sha256=EKbyNFgro7Xg5uueo6bXNrNSBTFeQUS1swiy9izQiXc,1492
|
|
130
|
+
robotic/include/rai/LGP/LGP_Tool.h,sha256=rBUIDwFbtBACMz-DHgSxM1l9HjbaLuVIyDTqBIzaQ6c,3263
|
|
131
131
|
robotic/include/rai/LGP/LGP_computers.h,sha256=YmHWOrSGz5HHNY5mUQheD-kPhOvzO3HsVRcaGvpME6o,6492
|
|
132
|
+
robotic/include/rai/LGP/LGP_computers2.h,sha256=1LKxnQEFeMWuewe26JL7Bj0F8_3gYQTM3JN2D18bVGs,6443
|
|
132
133
|
robotic/include/rai/LGP/LGP_node.h,sha256=gMNQLfkbdMR1C-sNufI3K23Qt_Su3tqfIWz46Ta0JNo,4100
|
|
133
134
|
robotic/include/rai/LGP/LGP_tree.h,sha256=J6W4Qypr70g0EZg30tTZBuca_6_O0sDQAGGv6Ow8oaE,4001
|
|
134
135
|
robotic/include/rai/LGP/Motif.h,sha256=-1cYCDDxJK3at3LKT2R-qRoum7o7CnziBg30yijt4Ls,592
|
|
136
|
+
robotic/include/rai/LGP/NLP_Descriptor.h,sha256=1XJ-Wzvf5kh6IdRmhwG4QIDW5D7N9fVq-egX65GLWwk,92
|
|
135
137
|
robotic/include/rai/LGP/initFol.h,sha256=m67VqzKUQzMN0kBFL0lWACu0ls7eYj8ExyXVFjuLtDA,507
|
|
136
138
|
robotic/include/rai/Logic/fol.h,sha256=ubWsZacmrRPGeDPKQVGKDoGC_4GxYGdVLJ0K3a3eZu0,3598
|
|
137
139
|
robotic/include/rai/Logic/folWorld.h,sha256=XpqTWOIvZbKlS_vsJkXOexrhjfy3_iywebFezJamhHA,6072
|
|
138
140
|
robotic/include/rai/Logic/treeSearchDomain.h,sha256=sO5Y6o9wRTQxfST9YyJw3P0KcqGX7ISqbIN-uGQ5abU,3882
|
|
139
|
-
robotic/include/rai/Optim/BayesOpt.h,sha256=
|
|
140
|
-
robotic/include/rai/Optim/GlobalIterativeNewton.h,sha256=
|
|
141
|
-
robotic/include/rai/Optim/NLP.h,sha256=
|
|
141
|
+
robotic/include/rai/Optim/BayesOpt.h,sha256=wNegCkDd9m6s0_ehnGx7jbtgTSQneg3bLOdR_q4W-Mc,1208
|
|
142
|
+
robotic/include/rai/Optim/GlobalIterativeNewton.h,sha256=jcGk5-aZ-CsaXG75TtIG9sc71AX7yZLpuM3UsFHEu6M,795
|
|
143
|
+
robotic/include/rai/Optim/NLP.h,sha256=up1E_L5dF5UOSkpePws10eMJ3Fu-947MuagIF8jQdkU,8235
|
|
142
144
|
robotic/include/rai/Optim/NLP_Factory.h,sha256=xDn73B-u6fFvtu-udkXgyTiFyjTzfJNHwUm6z88FiOo,1979
|
|
143
145
|
robotic/include/rai/Optim/NLP_GraphSolver.h,sha256=Te5_uyLrBvHANfGv9uHdR6YPuCWCqgJqj9EL8WYfF14,1172
|
|
144
146
|
robotic/include/rai/Optim/NLP_Sampler.h,sha256=JaOEc8YJwatW5toOviTFXlOoF3Dg8ZWPM9zejyW9ND8,4643
|
|
145
147
|
robotic/include/rai/Optim/NLP_Solver.h,sha256=Y07FfnrTjkVldXFU5HJ0SB0pOlGGivQ9k_4vpEM3YoA,2482
|
|
146
|
-
robotic/include/rai/Optim/SlackGaussNewton.h,sha256=
|
|
147
|
-
robotic/include/rai/Optim/constrained.h,sha256=
|
|
148
|
-
robotic/include/rai/Optim/gradient.h,sha256=
|
|
149
|
-
robotic/include/rai/Optim/lagrangian.h,sha256=
|
|
150
|
-
robotic/include/rai/Optim/
|
|
151
|
-
robotic/include/rai/Optim/
|
|
148
|
+
robotic/include/rai/Optim/SlackGaussNewton.h,sha256=C9GqyHzcseIY2xUMN4QmymOLtWjJcNmbhS5JJMiAPao,1055
|
|
149
|
+
robotic/include/rai/Optim/constrained.h,sha256=SHzXqARD5nzOH9orgQyfut6i4QWjd3gp-WgEP4PKMiM,1502
|
|
150
|
+
robotic/include/rai/Optim/gradient.h,sha256=1FrzwbjTRbhfsZbBFp_DEQMI1oq4wwt8oseLjfUWnpg,1835
|
|
151
|
+
robotic/include/rai/Optim/lagrangian.h,sha256=XQiykNcexB03nyzy78lv_2VmfDe1dFLnm7qKLk28p6Q,2550
|
|
152
|
+
robotic/include/rai/Optim/lbfgs.h,sha256=ulk-87QADRu7dbMiDvRWu6zPE6Wlx5hxtfIbnfnJVdc,283
|
|
153
|
+
robotic/include/rai/Optim/liblbfgs.h,sha256=Lu3zbs6PADps0WIbJHh_eoIxkCH7JPcEFZ6h5988JaI,32809
|
|
154
|
+
robotic/include/rai/Optim/m_LeastSquaresZeroOrder.h,sha256=ke_5LmUuVfwSNLqT4kHizYnPQarbdREJaT0PGkEZBlI,958
|
|
155
|
+
robotic/include/rai/Optim/newton.h,sha256=sQozCA1yL3JG7SESJW4AWSyFiM5aOUN6WxgQwZ3jJ9g,1139
|
|
156
|
+
robotic/include/rai/Optim/opt-ceres.h,sha256=kQbuKAfvOFIPcGWh2laGHyRsSf0A8mggVUGonq3JaHU,946
|
|
152
157
|
robotic/include/rai/Optim/opt-ipopt.h,sha256=1v147tZVY3MuNMRLaFFWxKC7fyNP5-59WJzKoVv8BsY,516
|
|
153
158
|
robotic/include/rai/Optim/opt-nlopt.h,sha256=R0ma9SjxcVU9nI7H39QOWUIPy95H4AiQwLRHz3DRe7k,970
|
|
154
|
-
robotic/include/rai/Optim/options.h,sha256=
|
|
155
|
-
robotic/include/rai/Optim/primalDual.h,sha256=
|
|
156
|
-
robotic/include/rai/Optim/testProblems_Opt.h,sha256=
|
|
157
|
-
robotic/include/rai/Optim/utils.h,sha256=
|
|
159
|
+
robotic/include/rai/Optim/options.h,sha256=U0Icnya7r4l1pBHwdGlsjufNZuvXtkqJKCseQFgb0Mk,1925
|
|
160
|
+
robotic/include/rai/Optim/primalDual.h,sha256=MP3vXRswnVLV09cqZWe0KomjXQEWxz7yMOd9NvMY4MY,1263
|
|
161
|
+
robotic/include/rai/Optim/testProblems_Opt.h,sha256=viiOu5FJHUWFcc-csl72g0G3Ogtqe0DedC08jIn-Mjk,6665
|
|
162
|
+
robotic/include/rai/Optim/utils.h,sha256=UDsMMMyuxNzTB8bHg1IFkGGQMTuCAD1Z9RTGJ8e_qpQ,2350
|
|
158
163
|
robotic/include/rai/PathAlgos/ConfigurationProblem.h,sha256=Zl_J3yooYFxA2-z-ulFL67nfzQBX90hUbD_cVFzpb3U,1351
|
|
159
164
|
robotic/include/rai/PathAlgos/PathResult.h,sha256=xxZiD8ClGKO719mQR50BsIzOlHeoH0UH4QNzWifoz6c,1070
|
|
160
165
|
robotic/include/rai/PathAlgos/RRT_PathFinder.h,sha256=DQ3ceE8A6CJ7xaf0NOihTy1w0WjAEJnPJU0J6NaDHe8,3293
|
|
@@ -170,7 +175,7 @@ robotic/include/rai/Perception/object.h,sha256=aPZVOLFurKWhhkHtZDwbsz-6oxNfOk5-o
|
|
|
170
175
|
robotic/include/rai/Perception/object_detector.h,sha256=HX2M_PbZET4DwPgE2yjELyYi2RdBZZ9wIUhqiwrB_bQ,2030
|
|
171
176
|
robotic/include/rai/Perception/opencv.h,sha256=3KT5npXCodVjVHLLipF3Jd89AKEz8Z3xjev9xWf9Itg,2505
|
|
172
177
|
robotic/include/rai/Perception/opencvCamera.h,sha256=rBCrB3zzfPvOk4dPPI2s1ZaQBpsQ0xQ7S7wRPduQW48,660
|
|
173
|
-
robotic/include/rai/Perception/pcl.h,sha256=
|
|
178
|
+
robotic/include/rai/Perception/pcl.h,sha256=r4sQEWDcpjJFg05bGJzhWKzQltFevWe5O-RJ_YwR8Q0,1430
|
|
174
179
|
robotic/include/rai/Perception/pclPlaneExtraction.h,sha256=RTyPIrxS4oZGZ1rXAhaRWxBrs3YX-PHmUimLG7t0LG0,2077
|
|
175
180
|
robotic/include/rai/Perception/pixel_format.h,sha256=dNRLdsMdckP0npn19WO_37RpH3poNamOT4JfEM6QAco,1064
|
|
176
181
|
robotic/include/rai/Perception/pointcloud_io.h,sha256=G908jUYDi8QFXmBDXrIuUrqZh24utcv3ABK2pWmhB50,1085
|
|
@@ -233,13 +238,13 @@ robotic/rai-robotModels/g1/meshes/waist_yaw_link.h5,sha256=GXkMr0tmYUvKPW5iKv8xd
|
|
|
233
238
|
robotic/rai-robotModels/objects/kitchen.g,sha256=PLi7un2u3I29Mcngc08-9J3ocTU_c5TYlXplYXTgQHU,1223
|
|
234
239
|
robotic/rai-robotModels/objects/shelf.g,sha256=ZZb8kTKrhIY9I4U_sFuGgf5V4GcNH_Zd-l7eHbAg54s,808
|
|
235
240
|
robotic/rai-robotModels/objects/tables.g,sha256=z9GifBjAaCbu3Y2ISmzhVyU9_mw2NlR87eAyj0vNYnI,455
|
|
236
|
-
robotic/rai-robotModels/panda/panda.g,sha256=
|
|
241
|
+
robotic/rai-robotModels/panda/panda.g,sha256=XOpLtLEWIrbvKvxwvsTbaMF-E8Z2ujNHtu2ccyiprxI,3124
|
|
237
242
|
robotic/rai-robotModels/panda/panda_arm_hand_conv.g,sha256=BVDQNIAwPB45rrvLX-WYw3Ys44jeqS9upi8RCV31UcY,2296
|
|
238
243
|
robotic/rai-robotModels/panda/panda_arm_hand_conv.yml,sha256=_YP4vVVKeScSPNLRRkkiH2fnHuFUQgt12O1RnWV5mTY,2486
|
|
239
244
|
robotic/rai-robotModels/panda/panda_clean.g,sha256=6EShzBmEa2R5sJRhnGRXwLWcyjRybFY3Su-hdwz55yw,3168
|
|
240
245
|
robotic/rai-robotModels/panda/panda_deformable.g,sha256=DvkhnJYSXc1S_GRBM3iJOm6WovKYrsckzAW-rXxLqH8,6037
|
|
241
246
|
robotic/rai-robotModels/panda/panda_gripper.g,sha256=qdVvPLq8LNkcXFNVfLcYBLNvcgAt7UN3qaTYgCevi7o,846
|
|
242
|
-
robotic/rai-robotModels/panda/panda_withoutCollisionModels.g,sha256=
|
|
247
|
+
robotic/rai-robotModels/panda/panda_withoutCollisionModels.g,sha256=l9VLxFzQ5zcjUglirB455T8yWt6gkcWRllyLrlVXbDc,103
|
|
243
248
|
robotic/rai-robotModels/panda/meshes/finger.h5,sha256=hzqxoufYkW0_qDgVH4ZCx7vwCeZF4s3qe0KpMyXf3Lw,12994
|
|
244
249
|
robotic/rai-robotModels/panda/meshes/hand.h5,sha256=lbiphvOO3NKhuBW6kexfbfArDcNKqpqDM9yS_bmFdss,100882
|
|
245
250
|
robotic/rai-robotModels/panda/meshes/link0.h5,sha256=wGFp4P3aAFhVCgb5idxLqUrkG2hx6KskZTK06i92YOk,284200
|
|
@@ -250,8 +255,8 @@ robotic/rai-robotModels/panda/meshes/link4.h5,sha256=BLYmj5sOiAAfKGNJdoXII0Sl2Ie
|
|
|
250
255
|
robotic/rai-robotModels/panda/meshes/link5.h5,sha256=TbrDtvaUYwrFJO8KKhCSF0fOZ8e6rC7GQ5xGtMrxud4,254542
|
|
251
256
|
robotic/rai-robotModels/panda/meshes/link6.h5,sha256=vWc78TMcfY5l8_dTLmypJiKsQx9Llb47BcfACXd2tOA,309727
|
|
252
257
|
robotic/rai-robotModels/panda/meshes/link7.h5,sha256=x-xcLQT0g3vrvdYhaVbX57LRrz9DT8nZFW6YN6oT0-0,172303
|
|
253
|
-
robotic/rai-robotModels/pr2/pr2.g,sha256=
|
|
254
|
-
robotic/rai-robotModels/pr2/pr2_clean.g,sha256=
|
|
258
|
+
robotic/rai-robotModels/pr2/pr2.g,sha256=n9T0o0NEp5YB2lbUsgr803XUzAslYjfQWg9RYC0cFVE,2312
|
|
259
|
+
robotic/rai-robotModels/pr2/pr2_clean.g,sha256=EW73SHK0YCTp-tCcL58cixBoa0sPIrfE5PLK1kU-DYo,26814
|
|
255
260
|
robotic/rai-robotModels/pr2/pr2_conv.g,sha256=XIxIBSz5h_luzKBga2ZP2rKOLi0Cp2w0Z65NpdFUFf8,25950
|
|
256
261
|
robotic/rai-robotModels/pr2/pr2_modifications.g,sha256=3CgSjGVbO-T-RNCSqAXJJuyQxwZTNNPoYgr73iA-EyI,4659
|
|
257
262
|
robotic/rai-robotModels/pr2/pr2_modify_fixGrippers.g,sha256=kgMG39nOyMoBoBPZLlzvjm0bIa10KB8g8y5nskt1onc,712
|
|
@@ -301,7 +306,7 @@ robotic/rai-robotModels/ranger/meshes/ranger_mini_v3_wheel.h5,sha256=zIiMDHGxqaz
|
|
|
301
306
|
robotic/rai-robotModels/ranger/meshes/ranger_mini_v3_wheel_right.h5,sha256=Rs3a7mj3SHgRa31iNNa5RmOMGBdXrpr73GrqaIqRmqs,270937
|
|
302
307
|
robotic/rai-robotModels/robotiq/robotiq.g,sha256=3m_n4NjH7Gfp_ztWIDb-ruR74q9WhElzqkT76KPeToQ,1066
|
|
303
308
|
robotic/rai-robotModels/robotiq/robotiq_arg2f_85_model_conv.yml,sha256=bkTMr1u1WZdE1LsDFEW3_vcp632_ZXUDM7Yt9T2ZlYU,2908
|
|
304
|
-
robotic/rai-robotModels/robotiq/robotiq_clean.g,sha256=
|
|
309
|
+
robotic/rai-robotModels/robotiq/robotiq_clean.g,sha256=MmRhhY4HkfKj-rfY6YE__Zr_67nxATZojefCdwsZW28,3893
|
|
305
310
|
robotic/rai-robotModels/robotiq/meshes/robotiq_arg2f_85_base_link.h5,sha256=papTdqkLlRzo_svqTXwd9Cp2qJHw2Wnt-Ct31lQCAKQ,331303
|
|
306
311
|
robotic/rai-robotModels/robotiq/meshes/robotiq_arg2f_85_inner_finger.h5,sha256=TYBns07SFdffSCNRZNh45_jOtprZAAIAO1WDHbvMMi0,34288
|
|
307
312
|
robotic/rai-robotModels/robotiq/meshes/robotiq_arg2f_85_inner_knuckle.h5,sha256=KvsozDURlth6A1baeYCiKN23mOsixLbWr01G_912pTs,27256
|
|
@@ -315,10 +320,10 @@ robotic/rai-robotModels/scenarios/gripper.g,sha256=-yvc-cxVMxz7OmqVzhg6dyh21hBk9
|
|
|
315
320
|
robotic/rai-robotModels/scenarios/k-bars.g,sha256=qDlha9pKZ8HZgz4eLRDpStPLhxVPgTsGiMdy5DQ1kB4,2162
|
|
316
321
|
robotic/rai-robotModels/scenarios/k00.g,sha256=Bjei9rYaLLwOhOSHFjaDGc7LFDraL8sxQYtNh88p4UY,4357
|
|
317
322
|
robotic/rai-robotModels/scenarios/kswing.g,sha256=k1bND_Hr-lE5sklOraw58HdUye6iW8jTdjBUwbyRCRM,3995
|
|
318
|
-
robotic/rai-robotModels/scenarios/liftRing.g,sha256=
|
|
323
|
+
robotic/rai-robotModels/scenarios/liftRing.g,sha256=OYcjfrP2xt8PCcVSv6uTUeBpnDeCIZq_UDJ8d490xa8,1336
|
|
319
324
|
robotic/rai-robotModels/scenarios/mobileMini.g,sha256=I7SE9YUUciZ1JrJG6BIAZ9Oho_eUa_Z76l5_h-B0wjY,1158
|
|
320
325
|
robotic/rai-robotModels/scenarios/pandaFloatingGripper.g,sha256=emCRjAxW1XAo9teBjjxvnM4C3JiCWPfiptFFr3swwfE,1508
|
|
321
|
-
robotic/rai-robotModels/scenarios/pandaSingle.g,sha256=
|
|
326
|
+
robotic/rai-robotModels/scenarios/pandaSingle.g,sha256=xYsue_6-zLBScApZ564oPWwMfQkM5IS0kB35zIPtS3s,1144
|
|
322
327
|
robotic/rai-robotModels/scenarios/panda_fixGripper.g,sha256=bhkRey6igLb18HlOFj7CpAjqF6R7Z3saxevipHAn4W0,337
|
|
323
328
|
robotic/rai-robotModels/scenarios/panda_fixRobotiq.g,sha256=QVLpZCchSnoouayhIoVQcaWYHaZGVn4pIlj6nkFDHjs,1564
|
|
324
329
|
robotic/rai-robotModels/scenarios/panda_mobile.g,sha256=Om5rU2C6_GBKcZcRBZ0cTsk2gKxzwoSE-32dxBMQa-8,713
|
|
@@ -335,7 +340,7 @@ robotic/rai-robotModels/scenarios/walker1.g,sha256=FTi0HxqU2fsKgqLCkdq5VCuc3Q9py
|
|
|
335
340
|
robotic/rai-robotModels/scenarios/walker3.g,sha256=zODCp1jzoFNLWs5f98qCkKeEcXxm8TKZ0RzPBFH1qq4,796
|
|
336
341
|
robotic/rai-robotModels/scenarios/workshop.g,sha256=2Xjh6cPk2xKbdvtDC89eDHZcRv8CxCnvDB2qR7AQWyY,5633
|
|
337
342
|
robotic/rai-robotModels/scenarios/workshopTable.g,sha256=zDvlVXHQlZV5Ppc9XbUJ6q5XjW1Fni-OsE2NHMdkGpY,4440
|
|
338
|
-
robotic/rai-robotModels/tests/arm.g,sha256=
|
|
343
|
+
robotic/rai-robotModels/tests/arm.g,sha256=D8L6GhjHu4FFoPp_CsAQ57U9S9SF5GnfCtIKl_LPPW0,1283
|
|
339
344
|
robotic/rai-robotModels/tests/compound.g,sha256=kwI7G0K5M-EEJDsEq37aEBR-BQGSIzroFUPD2OZGrcU,555
|
|
340
345
|
robotic/rai-robotModels/tests/pr2Shelf.g,sha256=axlVxDwuLMsNGdOga40nbzK3e6dWEthQEXm25XewNTw,329
|
|
341
346
|
robotic/rai-robotModels/tests/thin.g,sha256=1bWARayk8TJutfO8CZs3GWCcBwr_oL2SRLLCP1lDMRQ,222
|
|
@@ -351,21 +356,22 @@ robotic/rai-robotModels/ur10/meshes/wrist2.h5,sha256=fJSQ4Jh-ChmwvRYfDobqXssVaBZ
|
|
|
351
356
|
robotic/rai-robotModels/ur10/meshes/wrist3.h5,sha256=F8FrYVVp8YBdkgJ6EHKb5r_rm0kyhxf6b8KbwHjeegk,20770
|
|
352
357
|
robotic/src/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
353
358
|
robotic/src/cleanMeshes.py,sha256=42T9WwN_cn4u_s_BzN2eRfBQxmZTEQ6ZYPBtsesA5BM,1678
|
|
354
|
-
robotic/src/h5_helper.py,sha256=
|
|
359
|
+
robotic/src/h5_helper.py,sha256=Bv1R1MF6jVKrm6X9qSxUu5tKOQt87cXrmlRml-wU2ag,1259
|
|
360
|
+
robotic/src/h5_helper.py~,sha256=TdEFuf3E6yi1tUwjBuuxc2ulR6WhpHxpL5sUUz8fOBk,1131
|
|
355
361
|
robotic/src/mesh_helper.py,sha256=AMSOz3Eew9uJkDm5tFThbfJKcEQCmGyRLN4bZphISNk,16691
|
|
356
362
|
robotic/src/meshlabFilters.mlx,sha256=SCIiIk7XZusvKEKY62pHSem_R3TcMUP8BFaLTVUcnEg,3833
|
|
357
363
|
robotic/src/mujoco_io.py,sha256=drLNE4yo30hpOY01-AsuCWKLvNoG5w2YDSzR_rlyfz0,9474
|
|
358
364
|
robotic/src/urdf_io.py,sha256=bbPcJWS9rnYk8CWgEZTmx1XJRBIDrfwgCj-S_RFxl9U,8800
|
|
359
365
|
robotic/src/yaml_helper.py,sha256=Jf9QaKSNQrPkUPqd5FUDv7_h0wDlGXrhCdMwu6y-Nh0,925
|
|
360
|
-
robotic-0.3.
|
|
361
|
-
robotic-0.3.
|
|
362
|
-
robotic-0.3.
|
|
363
|
-
robotic-0.3.
|
|
364
|
-
robotic-0.3.
|
|
365
|
-
robotic-0.3.
|
|
366
|
-
robotic-0.3.
|
|
367
|
-
robotic-0.3.
|
|
368
|
-
robotic-0.3.
|
|
369
|
-
robotic-0.3.
|
|
370
|
-
robotic-0.3.
|
|
371
|
-
robotic-0.3.
|
|
366
|
+
robotic-0.3.3.dev0.data/scripts/ry-bot,sha256=LBNbbQeNNNd_tupI5463Xe-RKSD6xy4HGTbJloisCGk,2280
|
|
367
|
+
robotic-0.3.3.dev0.data/scripts/ry-h5info,sha256=6orNP37WPoobKup0PcLXQvbiCVWqeRR_JQyMH1iXHJk,449
|
|
368
|
+
robotic-0.3.3.dev0.data/scripts/ry-info,sha256=fL5QXJL4Xx-Q42L2C29HHbj1XsmWdWiKIv9rVfc5sm4,425
|
|
369
|
+
robotic-0.3.3.dev0.data/scripts/ry-meshTool,sha256=h4f4wFPNaey3ziz870SrEvy6SsQSL-ZnR_cH3UuAZxE,101
|
|
370
|
+
robotic-0.3.3.dev0.data/scripts/ry-test,sha256=vcaPrFq9Co9N2F2Mdl2_1CTieOBssSoEhU67wXqJ2EY,981
|
|
371
|
+
robotic-0.3.3.dev0.data/scripts/ry-urdfConvert.py,sha256=762MIDmAhdCCj55QftY7wsy9gOEs-TDEWcRPt5dECyc,2542
|
|
372
|
+
robotic-0.3.3.dev0.data/scripts/ry-view,sha256=_GjUbVS2X3AWnlXqIHwU5dofLmUKA2-NUPySgS-QJNI,599
|
|
373
|
+
robotic-0.3.3.dev0.dist-info/licenses/LICENSE,sha256=oT-pAsUSXiuMq2_3omR87-GFBeBnegQYixH4Bm_7wag,1071
|
|
374
|
+
robotic-0.3.3.dev0.dist-info/METADATA,sha256=IFKwQSPcvfeHWJBg0EsY2RKoGVuhxrrfdNaVOqkZUl0,6663
|
|
375
|
+
robotic-0.3.3.dev0.dist-info/WHEEL,sha256=6TsICjgOR7isz_jYr-ssV7RSRmh1_0Z7_b5ESlzfzVY,104
|
|
376
|
+
robotic-0.3.3.dev0.dist-info/top_level.txt,sha256=x5A4haAZ18y9FpO1IhXSVJ2TFdhVAgT5JMkejHUg_9U,8
|
|
377
|
+
robotic-0.3.3.dev0.dist-info/RECORD,,
|
robotic/test.py
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import point_cloud_utils as pcu
|
|
2
|
-
|
|
3
|
-
# v is a [n, 3] shaped NumPy array of vertices
|
|
4
|
-
# f is a [m, 3] shaped integer NumPy array of indices into v
|
|
5
|
-
# n is a [n, 3] shaped NumPy array of vertex normals
|
|
6
|
-
v, f, n = pcu.load_mesh_vfn("bunny.ply")
|
|
7
|
-
|
|
8
|
-
# Generate barycentric coordinates of random samples
|
|
9
|
-
num_samples = 1000
|
|
10
|
-
fid, bc = pcu.sample_mesh_random(v, f, num_samples)
|
|
11
|
-
|
|
12
|
-
# Interpolate the vertex positions and normals using the returned barycentric coordinates
|
|
13
|
-
# to get sample positions and normals
|
|
14
|
-
rand_positions = pcu.interpolate_barycentric_coords(f, fid, bc, v)
|
|
15
|
-
rand_normals = pcu.interpolate_barycentric_coords(f, fid, bc, n)
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
#!python
|
|
2
|
-
|
|
3
|
-
import argparse
|
|
4
|
-
import h5py
|
|
5
|
-
|
|
6
|
-
parser = argparse.ArgumentParser(description='h5-file info')
|
|
7
|
-
|
|
8
|
-
parser.add_argument('FILE', type=str,
|
|
9
|
-
help='h5-file name')
|
|
10
|
-
|
|
11
|
-
def print_attrs(name, obj):
|
|
12
|
-
if isinstance(obj, h5py.Dataset):
|
|
13
|
-
print(' ', name, obj.name, obj.shape, obj.dtype, f'{obj.size*obj.dtype.itemsize/1024:.2f}kB')
|
|
14
|
-
if obj.dtype=='int8':
|
|
15
|
-
print(' ', ''.join([chr(x) for x in obj[()]]))
|
|
16
|
-
elif obj.size<20:
|
|
17
|
-
print(' ', obj[()])
|
|
18
|
-
else:
|
|
19
|
-
print('---', name)
|
|
20
|
-
|
|
21
|
-
def main():
|
|
22
|
-
args = parser.parse_args()
|
|
23
|
-
|
|
24
|
-
print('=== file', args.FILE)
|
|
25
|
-
try:
|
|
26
|
-
with h5py.File(args.FILE, 'r') as fil:
|
|
27
|
-
fil.visititems(print_attrs)
|
|
28
|
-
except KeyboardInterrupt:
|
|
29
|
-
sys.exit(1)
|
|
30
|
-
|
|
31
|
-
if __name__ == "__main__":
|
|
32
|
-
main()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|