- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章python实现nao机器人手臂动作控制由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
本文实例为大家分享了python实现nao机器人手臂动作的具体代码,供大家参考,具体内容如下 。
这些天依然在看nao公司文档的东西,把读过的代码顺手敲了出来。代码依然很简单,但是为什么我要写博客呢?这其中有很大的原因在于,代码是死的,可是读着读着就感觉代码活了,而且,每次读都会有不同的感受。咱就直接看正题吧.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#-*-encoding:utf-8-*-
import
sys
import
motion
import
almath
from
naoqi
import
alproxy
def
stiffnesson(proxy):
#we use the body name to signify the collection of all jionts
pname
=
"body"
pstiffnesslists
=
1.0
ptimelists
=
1.0
proxy.stiffnessinterpolation(pname,pstiffnesslists,ptimelists)
def
main(robotip):
''' example showing a path of two position
'''
try
:
motionproxy
=
alproxy(
"almotion"
,robotip,
9559
)
except
exception ,e:
print
"could not create a proxy to almotion"
print
str
(e)
try
:
postureproxy
=
alproxy(
"alrobotposture"
,robotip,
9559
)
except
exception ,e:
print
"could not create a proxy to alrobotposture"
print
str
(e)
#set the nao stiffness on
stiffnesson(motionproxy)
#set the nao to standinit
postureproxy.gotoposture(
"standinit"
,
0.5
)
effector
=
"larm"
space
=
motion.frame_robot
# axis_mask_vel=7
axismask
=
almath.axis_mask_vel
isabsolute
=
false
#since we are in relative, the current position is zero
currentpos
=
[
0.0
,
0.0
,
0.0
,
0.0
,
0.0
,
0.0
]
#define the changes in relative to the current position
dx
=
0.03
#translation axis x
dy
=
0.03
#translation axis y
dz
=
0.00
#translation axis z
dwx
=
0.00
#rotation axis x
dwy
=
0.00
#rotation axis x
dwz
=
0.00
#rotation axis x
targetpos
=
[dx,dy,dz,dwx,dwy,dwz]
#go to the target and back again
path
=
[targetpos,currentpos]
times
=
[
2.0
,
4.0
]
#seconds
motionproxy.positioninterpolation(effector,space,path,axismask,times,isabsolute)
if
__name__
=
=
"__main()__"
:
robotip
=
"127.0.0.1"
if
len
(sys.argv)<
=
1
:
print
"use default :127.0.0.1"
else
:
robotip
=
sys.argv[
1
]
main(robotip)
|
接下来是另一个:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
#-*-encoding:utf-8-*-
''' cartesian control :arm trajectory example'''
import
sys
import
motion
import
almath
from
naoqi
import
alproxy
def
stiffnesson(proxy):
pname
=
"body"
pstiffnesslists
=
1.0
ptimelists
=
1.0
proxy.stiffnessinterpolation(pname,pstiffnesslists,ptimelists)
def
main(robotip):
'''showing a hand ellipoid
'''
try
:
motionproxy
=
alproxy(
"alproxy"
,robotip,
9559
)
except
exception,e:
print
"could not create a proxy "
print
"error was "
,e
try
:
postureproxy
=
alproxy(
"alrobotproxy"
,robotip,
9559
)
except
exception ,e:
print
"could not create a proxy"
print
"error was"
,e
#send nao in stiffness on
setstiffnesson(motionproxy)
#send nao to pose init
postureproxy.gotoposture(
"standinit"
,
0.5
)
effector
=
"larm"
space
=
motion.frame_robot
path
=
[
[
0.0
,
-
0.05
,
+
0.00
,
0.0
,
0.0
,
0.0
],
#pose1
[
0.0
,
+
0.00
,
+
0.04
,
0.0
,
0.0
,
0.0
],
#pose2
[
0.0
,
+
0.04
,
+
0.00
,
0.0
,
0.0
,
0.0
],
#pose3
[
0.0
,
+
0.00
,
-
0.02
,
0.0
,
0.0
,
0.0
],
#pose4
[
0.0
,
-
0.05
,
+
0.00
,
0.0
,
0.0
,
0.0
],
#pose5
[
0.0
,
+
0.00
,
+
0.00
,
0.0
,
0.0
,
0.0
]
]
#pose6
axismask
=
7
times
=
[
0.5
,
1.0
,
2.0
,
3.0
,
4.0
,
4.5
]
#seconds
isabsolute
=
false
motionproxy.positioninterpolation(effector,space,path,axismask,times,isabsolute)
if
__name__
=
=
"__main__"
:
robotip
=
"127.0.0.1"
if
len
(sys.argv)<
=
1
:
print
"usage local ip "
else
:
robotip
=
sys.argv[
1
]
main(robotip)
|
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我。 。
原文链接:https://blog.csdn.net/u011181878/article/details/21392201 。
最后此篇关于python实现nao机器人手臂动作控制的文章就讲到这里了,如果你想了解更多关于python实现nao机器人手臂动作控制的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
大家好,我完成了这个基本的 C 程序,它向输入任何给定数字集的用户显示有序集、最小值、最大值、平均值和中值。我遇到的问题是,当我打印数字时,我必须使用诸如“3.2%f”之类的东西来设置标准的精度,我怎
我有这个基于 Python 的服务守护进程,它正在执行大量多路复用 IO(选择)。 从另一个脚本(也是 Python)我想查询这个服务守护进程的状态/信息和/或控制处理(例如暂停它、关闭它、更改一些参
我读到 Fortran 对表达式求值的顺序有严格的规则。对于某些数值算法来说,这一点非常重要。 数值 C 程序如何控制浮点运算的顺序并防止编译器“优化”到不需要的运算顺序,例如将 (a*b)*c 更改
上下文: 整个问题可以概括为我正在尝试复制调用system(或fork)的行为,但在 mpi 环境中。 (事实证明,你不能并行调用system。)这意味着我有一个程序在许多节点上运行,每个节点上有一个
我考虑过控制scanf来接受c中的任何输入。我的概念是等待10秒(或任何其他时间)来接受任何输入。10秒后它将退出并且不再接收任何输入。 int main(){ int a,b,c,d; sca
我正在尝试使用生成器停止 setTimeOut 上的执行流程。我究竟做错了什么?我无法让 console.log 每 1500 毫秒退出一次。我是 node 的新手,如果我在做一件非常愚蠢的事情,请不
我希望我的应用程序的 Activity 堆栈包含同一 Activity 的多个实例,每个实例处理不同的数据。因此,我将让 Activity A 在我的 Activity 堆栈中处理数据 a、b、c 和
我有这个 bash 文件,它向设备询问 OpenSSH 的 IP、密码等。 现在,如果我使用 ssh root@ip,我必须输入密码。这真的很烦人。第二;我不能让我的脚本向它发送命令。 这就是我想要的
我正在尝试测试我有权访问的机器的缓存属性。为此,我正在尝试读取内存并对其计时。我改变工作集大小和步幅访问模式以获得不同的测量值。 代码如下所示: clock1 = get_ticks() for (i
我正在尝试编写一个 makefile 来替换用于构建相当大的应用程序的脚本之一。 当前脚本一次编译一个文件,使用 make 的主要原因是并行化构建过程。使用 make -j 16 我目前在办公室服务器
我正在制作一个小的测试程序,它演示了一个粗糙的控制台界面。 该程序是一个低于标准的典型获取行、响应程序,它甚至不识别“退出”,并希望您通过按 control-c 强制退出。在 Mingw32 上完成。
好的,我有一个 VOIP 电话。我知道电话的 IP 地址和端口,并且可以完全访问电话,我正在使用它通过 SIP 中继调用 SIP 电话。 我基本上想随时查看手机上发生的事情,但我不知道从哪里开始。 如
是否可以指定 CWinApp::WriteProfileString() 使用的应用程序名称? 如果我使用 CWinApp::SetRegistryKey 将我的公司名称设置为“MyCompany”,
我正在尝试用 Python 控制 Tor。我在 stackoverflow 上阅读了其他几个关于这个主题的问题,但没有一个能回答这个问题。 我正在寻找一种方法,以便在命令运行时为您提供“新身份”、新
最近在做一个项目,涉及到iPhone设备和手表传输数据、控制彼此界面跳转,在网上找了很多资料,发现国内的网站这方面介绍的不多,而国外的网站写的也不是很全,所以在这写这篇文章,给大家参考一下,望大神指
我想增加图中值的范围。在示例中,值的范围从 50 到 200。但是,我需要按如下方式分配值:50 75 100 125 150 175 200 并且最好使用 scale_fill_gradientn
我有一个IconButton,当按下时波纹效果是圆形的并且比按钮的面积大,我怎样才能减少点击按钮时波纹效果的大小? IconButton( constraints
我正在使用代码契约(Contract)为我的项目生成附属程序集。基本上它为项目的 MyAssembly.dll 创建一个 MyAssembly.Contracts.dll。这应该放在你的程序集旁边,但
我想使用分面绘制图形,其中面板之间的边缘不同。面板按字母顺序自动排序(按照 ggplot 中的惯例)。一个简单的例子: library(igraph) library(ggraph) g <- mak
我想为我的 Android 应用程序创建一个小部件,以显示有关位置的一些实时详细信息,例如天气。但我想在任何时候允许最多 3 个小部件实例,每个实例都有不同的位置。我不确定该怎么做,也找不到任何信息。
我是一名优秀的程序员,十分优秀!