Ejemplo n.º 1
0
 def setMouth(self, mo):
     boca = Mouth_msg()
     boca.mouthImage = mo.shape
     self.mouth_pub.publish(boca)
Ejemplo n.º 2
0
 def setMouth(self,mo):
     boca=Mouth_msg()
     boca.mouthImage=mo.shape
     self.mouth_pub.publish(boca)
Ejemplo n.º 3
0
 def setMouth(self,mouth):
     boca=Mouth_msg()
     boca.mouthImage=self.vMouths[mouth-1].shape
     self.mouth_pub.publish(boca)
     #self.speakMessage(self.vMouths[mouth-1].name)
     rospy.loginfo("setMouth: "+self.vMouths[mouth-1].name)
Ejemplo n.º 4
0
 def changeMouth(self, idx):
     boca = Mouth_msg()
     boca.mouthImage = self.vMouths[idx].shape
     self.mouth_pub.publish(boca)
Ejemplo n.º 5
0
 def changeMouth(self, idx):
     boca = Mouth_msg()
     boca.mouthImage = self.vMouths[idx].shape
     self.mouth_pub.publish(boca)
Ejemplo n.º 6
0
 def sendMouthPr1(self,mo):
     boca=Mouth_msg()
     boca.mouthImage=mo.shape
     #print mo.shape
     self.mouth_pub.publish(boca)