Skip to content

Commit ef79656

Browse files
authored
Add citations
1 parent b90090b commit ef79656

File tree

5 files changed

+84
-2
lines changed

5 files changed

+84
-2
lines changed

README.md

+49
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,55 @@ Installation instructions for installing from source can be found [here](doc/kin
3333

3434
[![Issues](https://img.shields.io/github/issues/roboticslab-uc3m/kinematics-dynamics.svg?label=Issues)](https://github.com/roboticslab-uc3m/kinematics-dynamics/issues)
3535

36+
## Citation
37+
38+
If you found this project useful, please consider citing the following works:
39+
40+
- [ScrewTheoryLib](libraries/ScrewTheoryLib/)
41+
42+
Łukawski, B., et al, "An inverse kinematics problem solver based on screw theory for manipulator arms," in XLIII Jornadas de Automática, 2022, pp. 864–869.
43+
44+
```bibtex
45+
@inproceedings{lukawski2022jjaa,
46+
author = {{\L}ukawski, Bartek and Montesino Valle, Ignacio and Victores, Juan G. and Jardón, Alberto and Balaguer, Carlos},
47+
title = {An inverse kinematics problem solver based on screw theory for manipulator arms},
48+
booktitle = {XLIII Jornadas de Automática},
49+
year = {2022},
50+
pages = {864--869},
51+
publisher = {Universidade da Coruña},
52+
doi = {10.17979/spudc.9788497498418.0864},
53+
}
54+
```
55+
56+
- [streamingDeviceController](programs/streamingDeviceController/)
57+
58+
Oña, E., et al, "A modular framework to facilitate the control of an assistive robotic arm using visual servoing and proximity sensing," in IEEE Int. Conf. on Autonomous Robot Systems and Competitions (ICARSC), 2020, pp. 28–33.
59+
60+
```bibtex
61+
@inproceedings{eona2020icarsc,
62+
author = {{O\~na}, Edwin Daniel and {\L}ukawski, Bartek and Jardón, Alberto and Balaguer, Carlos},
63+
title = {A modular framework to facilitate the control of an assistive robotic arm using visual servoing and proximity sensing},
64+
booktitle = {IEEE Int. Conf. on Autonomous Robot Systems and Competitions (ICARSC)},
65+
year = {2020},
66+
pages = {28--33},
67+
doi = {10.1109/ICARSC49921.2020.9096146},
68+
}
69+
```
70+
71+
B. Łukawski, J. Victores, C. Balaguer, "A generic controller for teleoperation on robotic manipulators using low-cost devices," in XLIV Jornadas de Automática, 2023, pp. 785–788.
72+
73+
```bibtex
74+
@inproceedings{lukawski2023jjaa,
75+
author = {{\L}ukawski, Bartek and Victores, Juan G. and Balaguer, Carlos},
76+
title = {A generic controller for teleoperation on robotic manipulators using low-cost devices},
77+
booktitle = {XLIV Jornadas de Automática},
78+
year = {2023},
79+
pages = {785--788},
80+
publisher = {Universidade da Coruña},
81+
doi = {10.17979/spudc.9788497498609.785},
82+
}
83+
```
84+
3685
## Similar and Related Projects
3786

3887
### Quaternions

doc/kinematics-dynamics.bib

+30-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,33 @@ @book{pardosgotor2018str_handbook
55
year = 2018,
66
month = 9,
77
note = {ISBN 978-1-7179-3181-8}
8-
}
8+
}
9+
10+
@inproceedings{eona2020icarsc,
11+
author = {{O\~na}, Edwin Daniel and {\L}ukawski, Bartek and Jardón, Alberto and Balaguer, Carlos},
12+
title = {A modular framework to facilitate the control of an assistive robotic arm using visual servoing and proximity sensing},
13+
booktitle = {IEEE Int. Conf. on Autonomous Robot Systems and Competitions (ICARSC)},
14+
year = {2020},
15+
pages = {28--33},
16+
doi = {10.1109/ICARSC49921.2020.9096146},
17+
}
18+
19+
@inproceedings{lukawski2022jjaa,
20+
author = {{\L}ukawski, Bartek and Montesino Valle, Ignacio and Victores, Juan G. and Jardón, Alberto and Balaguer, Carlos},
21+
title = {An inverse kinematics problem solver based on screw theory for manipulator arms},
22+
booktitle = {XLIII Jornadas de Automática},
23+
year = {2022},
24+
pages = {864--869},
25+
publisher = {Universidade da Coruña},
26+
doi = {10.17979/spudc.9788497498418.0864},
27+
}
28+
29+
@inproceedings{lukawski2023jjaa,
30+
author = {{\L}ukawski, Bartek and Victores, Juan G. and Balaguer, Carlos},
31+
title = {A generic controller for teleoperation on robotic manipulators using low-cost devices},
32+
booktitle = {XLIV Jornadas de Automática},
33+
year = {2023},
34+
pages = {785--788},
35+
publisher = {Universidade da Coruña},
36+
doi = {10.17979/spudc.9788497498609.785},
37+
}

libraries/ScrewTheoryLib/ScrewTheoryTools.hpp

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ namespace roboticslab
2727
* - faster solutions, since there are no iterations involved;
2828
* - exact solutions, since the direct formulation guarantees convergence;
2929
* - multiple solutions and the possibility to choose the better ones.
30+
*
31+
* @see @cite lukawski2022jjaa
3032
*/
3133

3234
/**

programs/streamingDeviceController/CentroidTransform.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class StreamingDevice;
1616
/**
1717
* @ingroup streamingDeviceController
1818
*
19-
* @brief ...
19+
* @see @cite eona2020icarsc
2020
*/
2121
class CentroidTransform
2222
{

programs/streamingDeviceController/StreamingDeviceController.hpp

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ namespace roboticslab
2323
*
2424
* @brief Sends streaming commands to the cartesian controller from
2525
* a streaming input device like the 3Dconnexion Space Navigator.
26+
*
27+
* @see @cite lukawski2023jjaa
2628
*/
2729
class StreamingDeviceController : public yarp::os::RFModule,
2830
public yarp::os::TypedReaderCallback<yarp::os::Bottle>

0 commit comments

Comments
 (0)