view org/touch.org @ 239:78a640e3bc55

saving progress... touch is in an inconsistent state.
author Robert McIntyre <rlm@mit.edu>
date Sun, 12 Feb 2012 12:58:01 -0700
parents 3fa49ff1649a
children 6961377c4554
line wrap: on
line source
1 #+title: Simulated Sense of Touch
2 #+author: Robert McIntyre
3 #+email: rlm@mit.edu
4 #+description: Simulated touch for AI research using JMonkeyEngine and clojure.
5 #+keywords: simulation, tactile sense, jMonkeyEngine3, clojure
6 #+SETUPFILE: ../../aurellem/org/setup.org
7 #+INCLUDE: ../../aurellem/org/level-0.org
11 * Touch
13 Touch is critical to navigation and spatial reasoning and as such I
14 need a simulated version of it to give to my AI creatures.
16 However, touch in my virtual can not exactly correspond to human touch
17 because my creatures are made out of completely rigid segments that
18 don't deform like human skin.
20 Human skin has a wide array of touch sensors, each of which speciliaze
21 in detecting different vibrational modes and pressures. These sensors
22 can integrate a vast expanse of skin (i.e. your entire palm), or a
23 tiny patch of skin at the tip of your finger. The hairs of the skin
24 help detect objects before they even come into contact with the skin
25 proper.
27 Instead of measuring deformation or vibration, I surround each rigid
28 part with a plenitude of hair-like objects which do not interact with
29 the physical world. Physical objects can pass through them with no
30 effect. The hairs are able to measure contact with other objects, and
31 constantly report how much of their extent is covered. So, even though
32 the creature's body parts do not deform, the hairs create a margin
33 around those body parts which achieves a sense of touch which is a
34 hybrid between a human's sense of deformation and sense from hairs.
36 Implementing touch in jMonkeyEngine follows a different techinal route
37 than vision and hearing. Those two senses piggybacked off
38 jMonkeyEngine's 3D audio and video rendering subsystems. To simulate
39 Touch, I use jMonkeyEngine's physics system to execute many small
40 collision detections, one for each "hair". The placement of the
41 "hairs" is determined by a UV-mapped image which shows where each hair
42 should be on the 3D surface of the body.
45 * Defining Touch Meta-Data in Blender
47 Each geometry can have a single UV map which describes the position
48 and length of the "hairs" which will constitute its sense of
49 touch. This image path is stored under the "touch" key. The image
50 itself is grayscale, with black meaning a hair length of 0 (no hair is
51 present) and white meaning a hair length of =scale=, which is a float
52 stored under the key "scale". If the pixel is gray then the resultant
53 hair length is linearly interpolated between 0 and =scale=. I call
54 these "hairs" /feelers/.
56 #+name: meta-data
57 #+begin_src clojure
58 (defn tactile-sensor-profile
59 "Return the touch-sensor distribution image in BufferedImage format,
60 or nil if it does not exist."
61 [#^Geometry obj]
62 (if-let [image-path (meta-data obj "touch")]
63 (load-image image-path)))
65 (defn tactile-scale
66 "Return the maximum length of a hair. All hairs are scalled between
67 0.0 and this length, depending on their color. Black is 0, and
68 white is maximum length, and everything in between is scalled
69 linearlly. Default scale is 0.01 jMonkeyEngine units."
70 [#^Geometry obj]
71 (if-let [scale (meta-data obj "scale")]
72 scale 0.1))
73 #+end_src
75 ** TODO add image showing example touch-uv map
76 ** TODO add metadata display for worm
79 * Skin Creation
80 * TODO get the actual lengths for each hair
82 #+begin_src clojure
83 pixel-triangles
84 xyz-triangles
85 conversions (map triangles->affine-transform pixel-triangles
86 xyz-triangles)
88 #+end_src
91 =(touch-kernel)= generates the functions which implement the sense of
92 touch for a creature. These functions must do 6 things to obtain touch
93 data.
95 - Get the tactile profile image and scale paramaters which describe
96 the layout of feelers along the object's surface.
97 =(tactile-sensor-profile)=, =(tactile-scale)=
99 - Get the lengths of each feeler by analyzing the color of the
100 pixels in the tactile profile image.
101 NOT IMPLEMENTED YET
103 - Find the triangles which make up the mesh in pixel-space and in
104 world-space.
105 =(triangles)= =(pixel-triangles)=
107 - Find the coordinates of each pixel in pixel space. These
108 coordinates are used to make the touch-topology.
109 =(sensors-in-triangle)=
111 - Find the coordinates of each pixel in world-space. These
112 coordinates are the origins of the feelers.
114 - Calculate the normals of the triangles in world space, and add
115 them to each of the origins of the feelers. These are the
116 normalized coordinates of the tips of the feelers.
117 For both of these, =(feelers)=
119 - Generate some sort of topology for the sensors.
120 =(touch-topology)=
122 #+begin_src clojure
127 #+end_src
131 #+name: kernel
132 #+begin_src clojure
133 (in-ns 'cortex.touch)
135 (declare touch-topology feelers set-ray)
137 (defn touch-kernel
138 "Constructs a function which will return tactile sensory data from
139 'geo when called from inside a running simulation"
140 [#^Geometry geo]
141 (let [[ray-reference-origins
142 ray-reference-tips
143 ray-lengths] (feelers geo)
144 current-rays (map (fn [] (Ray.)) ray-reference-origins)
145 topology (touch-topology geo)]
146 (if (empty? ray-reference-origins) nil
147 (fn [node]
148 (let [transform (.getWorldMatrix geo)]
149 (dorun
150 (map (fn [ray ref-origin ref-tip length]
151 (set-ray ray transform ref-origin ref-tip length))
152 current-rays ray-reference-origins
153 ray-reference-tips ray-lengths))
154 (vector
155 topology
156 (vec
157 (for [ray current-rays]
158 (do
159 (let [results (CollisionResults.)]
160 (.collideWith node ray results)
161 (let [touch-objects
162 (filter #(not (= geo (.getGeometry %)))
163 results)]
164 [(if (empty? touch-objects)
165 (.getLimit ray)
166 (.getDistance (first touch-objects)))
167 (.getLimit ray)])))))))))))
169 (defn touch-kernel*
170 "Returns a function which returns tactile sensory data when called
171 inside a running simulation."
172 [#^Geometry geo]
173 (let [feeler-coords (feeler-coordinates geo)
174 tris (triangles geo)
175 limit (tactile-scale geo)]
176 (if (empty? (touch-topology geo))
177 nil
178 (fn [node]
179 (let [sensor-origins
180 (map
181 #(map (partial local-to-world geo) %)
182 feeler-coords)
183 triangle-normals
184 (map (partial get-ray-direction geo)
185 tris)
186 rays
187 (flatten
188 (map (fn [origins norm]
189 (map #(doto (Ray. % norm)
190 (.setLimit limit)) origins))
191 sensor-origins triangle-normals))]
192 (vector
193 (touch-topology geo)
194 (vec
195 (for [ray rays]
196 (do
197 (let [results (CollisionResults.)]
198 (.collideWith node ray results)
199 (let [touch-objects
200 (filter #(not (= geo (.getGeometry %)))
201 results)]
202 [(if (empty? touch-objects)
203 limit (.getDistance (first touch-objects)))
204 limit])))))))))))
206 (defn touch!
207 "Endow the creature with the sense of touch. Returns a sequence of
208 functions, one for each body part with a tactile-sensor-proile,
209 each of which when called returns sensory data for that body part."
210 [#^Node creature]
211 (filter
212 (comp not nil?)
213 (map touch-kernel
214 (filter #(isa? (class %) Geometry)
215 (node-seq creature)))))
216 #+end_src
218 * Sensor Related Functions
220 These functions analyze the touch-sensor-profile image convert the
221 location of each touch sensor from pixel coordinates to UV-coordinates
222 and XYZ-coordinates.
224 #+name: sensors
225 #+begin_src clojure
226 (defn pixel-feelers
227 "Returns the coordinates of the feelers in pixel space in lists, one
228 list for each triangle, ordered in the same way as (triangles) and
229 (pixel-triangles)."
230 [#^Geometry geo image]
237 (defn sensors-in-triangle
238 "Locate the touch sensors in the triangle, returning a map of their
239 UV and geometry-relative coordinates."
240 [image mesh tri-index]
241 (let [width (.getWidth image)
242 height (.getHeight image)
243 UV-vertex-coords (triangle-UV-coord mesh width height tri-index)
244 bounds (convex-bounds UV-vertex-coords)
246 cutout-triangle (points->triangle UV-vertex-coords)
247 UV-sensor-coords
248 (filter (comp (partial inside-triangle? cutout-triangle)
249 (fn [[u v]] (Vector3f. u v 0)))
250 (white-coordinates image bounds))
251 UV->geometry (triangle-transformation
252 cutout-triangle
253 (mesh-triangle mesh tri-index))
254 geometry-sensor-coords
255 (map (fn [[u v]] (.mult UV->geometry (Vector3f. u v 0)))
256 UV-sensor-coords)]
257 {:UV UV-sensor-coords :geometry geometry-sensor-coords}))
259 (defn-memo locate-feelers
260 "Search the geometry's tactile UV profile for touch sensors,
261 returning their positions in geometry-relative coordinates."
262 [#^Geometry geo]
263 (let [mesh (.getMesh geo)
264 num-triangles (.getTriangleCount mesh)]
265 (if-let [image (tactile-sensor-profile geo)]
266 (map
267 (partial sensors-in-triangle image mesh)
268 (range num-triangles))
269 (repeat (.getTriangleCount mesh) {:UV nil :geometry nil}))))
271 (defn-memo touch-topology
272 "Return a sequence of vectors of the form [x y] describing the
273 \"topology\" of the tactile sensors. Points that are close together
274 in the touch-topology are generally close together in the simulation."
275 [#^Gemoetry geo]
276 (vec (collapse (reduce concat (map :UV (locate-feelers geo))))))
278 (defn-memo feeler-coordinates
279 "The location of the touch sensors in world-space coordinates."
280 [#^Geometry geo]
281 (vec (map :geometry (locate-feelers geo))))
282 #+end_src
287 * Visualizing Touch
288 #+name: visualization
289 #+begin_src clojure
290 (in-ns 'cortex.touch)
292 (defn touch->gray
293 "Convert a pair of [distance, max-distance] into a grayscale pixel"
294 [distance max-distance]
295 (gray
296 (- 255
297 (rem
298 (int
299 (* 255 (/ distance max-distance)))
300 256))))
302 (defn view-touch
303 "Creates a function which accepts a list of touch sensor-data and
304 displays each element to the screen."
305 []
306 (view-sense
307 (fn
308 [[coords sensor-data]]
309 (let [image (points->image coords)]
310 (dorun
311 (for [i (range (count coords))]
312 (.setRGB image ((coords i) 0) ((coords i) 1)
313 (apply touch->gray (sensor-data i)))))
314 image))))
315 #+end_src
319 * Triangle Manipulation Functions
321 The rigid bodies which make up a creature have an underlying
322 =Geometry=, which is a =Mesh= plus a =Material= and other important
323 data involved with displaying the body.
325 A =Mesh= is composed of =Triangles=, and each =Triangle= has three
326 verticies which have coordinates in XYZ space and UV space.
328 Here, =(triangles)= gets all the triangles which compose a mesh, and
329 =(triangle-UV-coord)= returns the the UV coordinates of the verticies
330 of a triangle.
332 #+name: triangles-1
333 #+begin_src clojure
334 (in-ns 'cortex.touch)
336 (defn vector3f-seq [#^Vector3f v]
337 [(.getX v) (.getY v) (.getZ v)])
339 (defn triangle-seq [#^Triangle tri]
340 [(vector3f-seq (.get1 tri))
341 (vector3f-seq (.get2 tri))
342 (vector3f-seq (.get3 tri))])
344 (defn ->vector3f [[x y z]] (Vector3f. x y z))
346 (defn ->triangle [points]
347 (apply #(Triangle. %1 %2 %3) (map ->vector3f points)))
349 (defn triangle
350 "Get the triangle specified by triangle-index from the mesh within
351 bounds."
352 [#^Geometry geo triangle-index]
353 (triangle-seq
354 (let [scratch (Triangle.)]
355 (.getTriangle (.getMesh geo) triangle-index scratch) scratch)))
357 (defn triangles
358 "Return a sequence of all the Triangles which compose a given
359 Geometry."
360 [#^Geometry geo]
361 (map (partial triangle geo) (range (.getTriangleCount (.getMesh geo)))))
363 (defn triangle-vertex-indices
364 "Get the triangle vertex indices of a given triangle from a given
365 mesh."
366 [#^Mesh mesh triangle-index]
367 (let [indices (int-array 3)]
368 (.getTriangle mesh triangle-index indices)
369 (vec indices)))
371 (defn vertex-UV-coord
372 "Get the UV-coordinates of the vertex named by vertex-index"
373 [#^Mesh mesh vertex-index]
374 (let [UV-buffer
375 (.getData
376 (.getBuffer
377 mesh
378 VertexBuffer$Type/TexCoord))]
379 [(.get UV-buffer (* vertex-index 2))
380 (.get UV-buffer (+ 1 (* vertex-index 2)))]))
382 (defn pixel-triangle [#^Geometry geo image index]
383 (let [mesh (.getMesh geo)
384 width (.getWidth image)
385 height (.getHeight image)]
386 (vec (map (fn [[u v]] (vector (* width u) (* height v)))
387 (map (partial vertex-UV-coord mesh)
388 (triangle-vertex-indices mesh index))))))
390 (defn pixel-triangles [#^Geometry geo image]
391 (let [height (.getHeight image)
392 width (.getWidth image)]
393 (map (partial pixel-triangle geo image)
394 (range (.getTriangleCount (.getMesh geo))))))
396 #+end_src
398 * Triangle Affine Transforms
400 The position of each hair is stored in a 2D image in UV
401 coordinates. To place the hair in 3D space we must convert from UV
402 coordinates to XYZ coordinates. Each =Triangle= has coordinates in
403 both UV-space and XYZ-space, which defines a unique [[http://mathworld.wolfram.com/AffineTransformation.html ][Affine Transform]]
404 for translating any coordinate within the UV triangle to the
405 cooresponding coordinate in the XYZ triangle.
407 #+name: triangles-3
408 #+begin_src clojure
409 (defn triangle->matrix4f
410 "Converts the triangle into a 4x4 matrix: The first three columns
411 contain the vertices of the triangle; the last contains the unit
412 normal of the triangle. The bottom row is filled with 1s."
413 [#^Triangle t]
414 (let [mat (Matrix4f.)
415 [vert-1 vert-2 vert-3]
416 ((comp vec map) #(.get t %) (range 3))
417 unit-normal (do (.calculateNormal t)(.getNormal t))
418 vertices [vert-1 vert-2 vert-3 unit-normal]]
419 (dorun
420 (for [row (range 4) col (range 3)]
421 (do
422 (.set mat col row (.get (vertices row)col))
423 (.set mat 3 row 1))))
424 mat))
426 (defn triangle-transformation
427 "Returns the affine transformation that converts each vertex in the
428 first triangle into the corresponding vertex in the second
429 triangle."
430 [#^Triangle tri-1 #^Triangle tri-2]
431 (.mult
432 (triangle->matrix4f tri-2)
433 (.invert (triangle->matrix4f tri-1))))
434 #+end_src
437 * Schrapnel Conversion Functions
439 It is convienent to treat a =Triangle= as a sequence of verticies, and
440 a =Vector2f= and =Vector3f= as a sequence of floats. These conversion
441 functions make this easy. If these classes implemented =Iterable= then
442 this code would not be necessary. Hopefully they will in the future.
444 #+name: triangles-2
445 #+begin_src clojure
446 (defn point->vector2f [[u v]]
447 (Vector2f. u v))
449 (defn vector2f->vector3f [v]
450 (Vector3f. (.getX v) (.getY v) 0))
452 (defn map-triangle [f #^Triangle tri]
453 (Triangle.
454 (f 0 (.get1 tri))
455 (f 1 (.get2 tri))
456 (f 2 (.get3 tri))))
458 (defn points->triangle
459 "Convert a list of points into a triangle."
460 [points]
461 (apply #(Triangle. %1 %2 %3)
462 (map (fn [point]
463 (let [point (vec point)]
464 (Vector3f. (get point 0 0)
465 (get point 1 0)
466 (get point 2 0))))
467 (take 3 points))))
468 #+end_src
471 * Triangle Boundaries
473 For efficiency's sake I will divide the UV-image into small squares
474 which inscribe each UV-triangle, then extract the points which lie
475 inside the triangle and map them to 3D-space using
476 =(triangle-transform)= above. To do this I need a function,
477 =(inside-triangle?)=, which determines whether a point is inside a
478 triangle in 2D UV-space.
480 #+name: triangles-4
481 #+begin_src clojure
482 (defn convex-bounds
483 "Returns the smallest square containing the given vertices, as a
484 vector of integers [left top width height]."
485 [uv-verts]
486 (let [xs (map first uv-verts)
487 ys (map second uv-verts)
488 x0 (Math/floor (apply min xs))
489 y0 (Math/floor (apply min ys))
490 x1 (Math/ceil (apply max xs))
491 y1 (Math/ceil (apply max ys))]
492 [x0 y0 (- x1 x0) (- y1 y0)]))
494 (defn same-side?
495 "Given the points p1 and p2 and the reference point ref, is point p
496 on the same side of the line that goes through p1 and p2 as ref is?"
497 [p1 p2 ref p]
498 (<=
499 0
500 (.dot
501 (.cross (.subtract p2 p1) (.subtract p p1))
502 (.cross (.subtract p2 p1) (.subtract ref p1)))))
504 (defn inside-triangle?
505 "Is the point inside the triangle?"
506 {:author "Dylan Holmes"}
507 [#^Triangle tri #^Vector3f p]
508 (let [[vert-1 vert-2 vert-3] (triangle-seq tri)]
509 (and
510 (same-side? vert-1 vert-2 vert-3 p)
511 (same-side? vert-2 vert-3 vert-1 p)
512 (same-side? vert-3 vert-1 vert-2 p))))
513 #+end_src
516 * Physics Collision Objects
518 The "hairs" are actually =Rays= which extend from a point on a
519 =Triangle= in the =Mesh= normal to the =Triangle's= surface.
521 #+name: rays
522 #+begin_src clojure
523 (defn get-ray-origin
524 "Return the origin which a Ray would have to have to be in the exact
525 center of a particular Triangle in the Geometry in World
526 Coordinates."
527 [geom tri]
528 (let [new (Vector3f.)]
529 (.calculateCenter tri)
530 (.localToWorld geom (.getCenter tri) new) new))
532 (defn get-ray-direction
533 "Return the direction which a Ray would have to have to be to point
534 normal to the Triangle, in coordinates relative to the center of the
535 Triangle."
536 [geom tri]
537 (let [n+c (Vector3f.)]
538 (.calculateNormal tri)
539 (.calculateCenter tri)
540 (.localToWorld
541 geom
542 (.add (.getCenter tri) (.getNormal tri)) n+c)
543 (.subtract n+c (get-ray-origin geom tri))))
544 #+end_src
545 * Headers
547 #+name: touch-header
548 #+begin_src clojure
549 (ns cortex.touch
550 "Simulate the sense of touch in jMonkeyEngine3. Enables any Geometry
551 to be outfitted with touch sensors with density determined by a UV
552 image. In this way a Geometry can know what parts of itself are
553 touching nearby objects. Reads specially prepared blender files to
554 construct this sense automatically."
555 {:author "Robert McIntyre"}
556 (:use (cortex world util sense))
557 (:use clojure.contrib.def)
558 (:import (com.jme3.scene Geometry Node Mesh))
559 (:import com.jme3.collision.CollisionResults)
560 (:import com.jme3.scene.VertexBuffer$Type)
561 (:import (com.jme3.math Triangle Vector3f Vector2f Ray Matrix4f)))
562 #+end_src
564 * Adding Touch to the Worm
566 #+name: test-touch
567 #+begin_src clojure
568 (ns cortex.test.touch
569 (:use (cortex world util sense body touch))
570 (:use cortex.test.body))
572 (cortex.import/mega-import-jme3)
574 (defn test-touch []
575 (let [the-worm (doto (worm) (body!))
576 touch (touch! the-worm)
577 touch-display (view-touch)]
578 (world (nodify [the-worm (floor)])
579 standard-debug-controls
581 (fn [world]
582 (light-up-everything world))
584 (fn [world tpf]
585 (touch-display (map #(% (.getRootNode world)) touch))))))
586 #+end_src
587 * Source Listing
588 * Next
591 * COMMENT Code Generation
592 #+begin_src clojure :tangle ../src/cortex/touch.clj
593 <<touch-header>>
594 <<meta-data>>
595 <<triangles-1>>
596 <<triangles-2>>
597 <<triangles-3>>
598 <<triangles-4>>
599 <<sensors>>
600 <<rays>>
601 <<kernel>>
602 <<visualization>>
603 #+end_src
606 #+begin_src clojure :tangle ../src/cortex/test/touch.clj
607 <<test-touch>>
608 #+end_src