Mercurial > cortex
view org/eyes.org @ 149:1e6beed24cec
saving before major refactoring
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Fri, 03 Feb 2012 04:31:58 -0700 |
parents | 9d0fe7f54e14 |
children | aaacf087504c |
line wrap: on
line source
1 #+title: Simulated Sense of Sight2 #+author: Robert McIntyre3 #+email: rlm@mit.edu4 #+description: Simulated sight for AI research using JMonkeyEngine3 and clojure5 #+keywords: computer vision, jMonkeyEngine3, clojure6 #+SETUPFILE: ../../aurellem/org/setup.org7 #+INCLUDE: ../../aurellem/org/level-0.org8 #+babel: :mkdirp yes :noweb yes :exports both10 * Vision12 I want to make creatures with eyes. Each eye can be independely moved13 and should see its own version of the world depending on where it is.14 #+name: eyes15 #+begin_src clojure16 (ns cortex.vision17 "Simulate the sense of vision in jMonkeyEngine3. Enables multiple18 eyes from different positions to observe the same world, and pass19 the observed data to any arbitray function."20 {:author "Robert McIntyre"}21 (:use cortex.world)22 (:import com.jme3.post.SceneProcessor)23 (:import (com.jme3.util BufferUtils Screenshots))24 (:import java.nio.ByteBuffer)25 (:import java.awt.image.BufferedImage)26 (:import com.jme3.renderer.ViewPort)27 (:import com.jme3.math.ColorRGBA)28 (:import com.jme3.renderer.Renderer))31 (defn vision-pipeline32 "Create a SceneProcessor object which wraps a vision processing33 continuation function. The continuation is a function that takes34 [#^Renderer r #^FrameBuffer fb #^ByteBuffer b #^BufferedImage bi],35 each of which has already been appropiately sized."36 [continuation]37 (let [byte-buffer (atom nil)38 renderer (atom nil)39 image (atom nil)]40 (proxy [SceneProcessor] []41 (initialize42 [renderManager viewPort]43 (let [cam (.getCamera viewPort)44 width (.getWidth cam)45 height (.getHeight cam)]46 (reset! renderer (.getRenderer renderManager))47 (reset! byte-buffer48 (BufferUtils/createByteBuffer49 (* width height 4)))50 (reset! image (BufferedImage.51 width height52 BufferedImage/TYPE_4BYTE_ABGR))))53 (isInitialized [] (not (nil? @byte-buffer)))54 (reshape [_ _ _])55 (preFrame [_])56 (postQueue [_])57 (postFrame58 [#^FrameBuffer fb]59 (.clear @byte-buffer)60 (continuation @renderer fb @byte-buffer @image))61 (cleanup []))))63 (defn frameBuffer->byteBuffer!64 "Transfer the data in the graphics card (Renderer, FrameBuffer) to65 the CPU (ByteBuffer)."66 [#^Renderer r #^FrameBuffer fb #^ByteBuffer bb]67 (.readFrameBuffer r fb bb) bb)69 (defn byteBuffer->bufferedImage!70 "Convert the C-style BGRA image data in the ByteBuffer bb to the AWT71 style ABGR image data and place it in BufferedImage bi."72 [#^ByteBuffer bb #^BufferedImage bi]73 (Screenshots/convertScreenShot bb bi) bi)75 (defn BufferedImage!76 "Continuation which will grab the buffered image from the materials77 provided by (vision-pipeline)."78 [#^Renderer r #^FrameBuffer fb #^ByteBuffer bb #^BufferedImage bi]79 (byteBuffer->bufferedImage!80 (frameBuffer->byteBuffer! r fb bb) bi))82 (defn add-eye83 "Add an eye to the world, calling continuation on every frame84 produced."85 [world camera continuation]86 (let [width (.getWidth camera)87 height (.getHeight camera)88 render-manager (.getRenderManager world)89 viewport (.createMainView render-manager "eye-view" camera)]90 (doto viewport91 (.setClearFlags true true true)92 (.setBackgroundColor ColorRGBA/Black)93 (.addProcessor (vision-pipeline continuation))94 (.attachScene (.getRootNode world)))))95 #+end_src97 #+results: eyes98 : #'cortex.vision/add-eye100 Note the use of continuation passing style for connecting the eye to a101 function to process the output. You can create any number of eyes, and102 each of them will see the world from their own =Camera=. Once every103 frame, the rendered image is copied to a =BufferedImage=, and that104 data is sent off to the continuation function. Moving the =Camera=105 which was used to create the eye will change what the eye sees.107 * Example109 #+name: test-vision110 #+begin_src clojure111 (ns cortex.test.vision112 (:use (cortex world util vision))113 (:import java.awt.image.BufferedImage)114 (:import javax.swing.JPanel)115 (:import javax.swing.SwingUtilities)116 (:import java.awt.Dimension)117 (:import javax.swing.JFrame)118 (:import com.jme3.math.ColorRGBA)119 (:import com.jme3.scene.Node)120 (:import com.jme3.math.Vector3f))122 (defn test-two-eyes123 "Testing vision:124 Tests the vision system by creating two views of the same rotating125 object from different angles and displaying both of those views in126 JFrames.128 You should see a rotating cube, and two windows,129 each displaying a different view of the cube."130 []131 (let [candy132 (box 1 1 1 :physical? false :color ColorRGBA/Blue)]133 (world134 (doto (Node.)135 (.attachChild candy))136 {}137 (fn [world]138 (let [cam (.clone (.getCamera world))139 width (.getWidth cam)140 height (.getHeight cam)]141 (add-eye world cam142 ;;no-op143 (comp (view-image) BufferedImage!)144 )145 (add-eye world146 (doto (.clone cam)147 (.setLocation (Vector3f. -10 0 0))148 (.lookAt Vector3f/ZERO Vector3f/UNIT_Y))149 ;;no-op150 (comp (view-image) BufferedImage!))151 ;; This is here to restore the main view152 ;; after the other views have completed processing153 (add-eye world (.getCamera world) no-op)))154 (fn [world tpf]155 (.rotate candy (* tpf 0.2) 0 0)))))156 #+end_src158 #+results: test-vision159 : #'cortex.test.vision/test-two-eyes161 The example code will create two videos of the same rotating object162 from different angles. It can be used both for stereoscopic vision163 simulation or for simulating multiple creatures, each with their own164 sense of vision.166 - As a neat bonus, this idea behind simulated vision also enables one167 to [[../../cortex/html/capture-video.html][capture live video feeds from jMonkeyEngine]].170 * COMMENT code generation171 #+begin_src clojure :tangle ../src/cortex/vision.clj172 <<eyes>>173 #+end_src175 #+begin_src clojure :tangle ../src/cortex/test/vision.clj176 <<test-vision>>177 #+end_src