Files
@ d991f7c3485a
Branch filter:
Location: light9/test/cam/bg.n3 - annotation
d991f7c3485a
2.2 KiB
text/plain
WIP rough porting of coffee to ts
669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff 669c4892a1ff | @prefix : <http://light9.bigasterisk.com/> .
@prefix dev: <http://light9.bigasterisk.com/device/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix set: <http://light9.bigasterisk.com/setting/> .
:session0 a :CaptureSession;
:capture :sample0, :sample1, :sample2, :sample3, :sample4, :sample5 .
:sample0 a :LightSample; :imagePath <http://light9.bigasterisk.com/test/cam/bg2-a.jpg>;
:setting
[ :device dev:aura1; :deviceAttr :color; :scaledValue "#ffffff" ],
[ :device dev:aura1; :deviceAttr :rx; :value 0.2 ],
[ :device dev:aura1; :deviceAttr :ry; :value 0.573 ] .
:sample1 a :LightSample; :imagePath <http://light9.bigasterisk.com/test/cam/bg2-b.jpg>;
:setting
[ :device dev:aura1; :deviceAttr :color; :scaledValue "#ffffff" ],
[ :device dev:aura1; :deviceAttr :rx; :value 0.3 ],
[ :device dev:aura1; :deviceAttr :ry; :value 0.573 ] .
:sample2 a :LightSample; :imagePath <http://light9.bigasterisk.com/test/cam/bg2-c.jpg>;
:setting
[ :device dev:aura1; :deviceAttr :color; :scaledValue "#ffffff" ],
[ :device dev:aura1; :deviceAttr :rx; :value 0.4 ],
[ :device dev:aura1; :deviceAttr :ry; :value 0.573 ] .
:sample3 a :LightSample; :imagePath <http://light9.bigasterisk.com/test/cam/bg2-d.jpg>;
:setting
[ :device dev:aura1; :deviceAttr :color; :scaledValue "#ffffff" ],
[ :device dev:aura1; :deviceAttr :rx; :value 0.5 ],
[ :device dev:aura1; :deviceAttr :ry; :value 0.573 ] .
:sample4 a :LightSample; :imagePath <http://light9.bigasterisk.com/test/cam/bg2-e.jpg>;
:setting
[ :device dev:aura1; :deviceAttr :color; :scaledValue "#ffffff" ],
[ :device dev:aura1; :deviceAttr :rx; :value 0.6 ],
[ :device dev:aura1; :deviceAttr :ry; :value 0.573 ] .
# note: different device
:sample5 a :LightSample; :imagePath <http://light9.bigasterisk.com/test/cam/bg2-f.jpg>;
:setting
[ :device dev:aura2; :deviceAttr :color; :scaledValue "#ffffff" ],
[ :device dev:aura2; :deviceAttr :rx; :value 0.7 ],
[ :device dev:aura2; :deviceAttr :ry; :value 0.573 ] .
|