Advertisement
Guest User

Untitled

a guest
Jun 28th, 2012
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.74 KB | None | 0 0
  1. gegl.png:
  2.     name: gegl:load
  3.     path: data/gegl.png
  4.  
  5. car-stack.png:
  6.     name: gegl:load
  7.     path: data/car-stack.png
  8.  
  9. bg1:
  10.     name: gegl:gaussian-blur
  11.     input: gegl.png:output
  12.     std-dev-x: 5.0
  13.     std-dev-y: 5.0
  14.  
  15. add1:
  16.     name: gegl:add
  17.     input: gb1:output
  18.     value: 0.5
  19.  
  20. tr1:
  21.     name: gegl:translate
  22.     input: add1:output
  23.     x: 5.0
  24.     y: -2.0
  25.  
  26. op1:
  27.     name: gegl:opacity
  28.     input: tr1:output
  29.     value: 0.8
  30.  
  31. dst-over1:
  32.     name: gegl:dst-over
  33.     input: gegl.png:output
  34.     aux: car-stack.png:output
  35.  
  36. scale1:
  37.     name: gegl:scale
  38.     input: dst-over1:output
  39.     origin-x: 0.0
  40.     origin-y: 0.0
  41.     filter: linear
  42.     hard-edges: false
  43.     x: 0.5
  44.     y: 0.5
  45.  
  46. tr2:
  47.     name: gegl:translate
  48.     input: scale1:output
  49.     x: 335
  50.     y: 210
  51.  
  52. bb1:
  53.     name: gegl:box-blur
  54.     input: dst-over1:output
  55.     radius: 15
  56.  
  57. op2:
  58.     name: gegl:opacity
  59.     input: bb1:output
  60.     value: -0.5
  61.  
  62. tr3:
  63.     name: gegl:translate
  64.     input: op2:output
  65.     x: 90
  66.     y: 90
  67.  
  68. over1:
  69.     name: gegl:over
  70.     input: car-stack.png:output
  71.     aux: tr3:output
  72.  
  73. over2:
  74.     name: gegl:over
  75.     input: over1:output
  76.     aux: tr2:output
  77.  
  78. scale2:
  79.     name: gegl:scale
  80.     input: car-stack.png:output
  81.     origin-x: 0.0
  82.     origin-y: 0.0
  83.     filter: linear
  84.     hard-edges: false
  85.     x: 0.2
  86.     y: 0.2
  87.  
  88. threshold1:
  89.     name: gegl-threshold
  90.     input: scale2:output
  91.     value: 0.5
  92.  
  93. tr4:
  94.     name: gegl:translate
  95.     input: threshold1:output
  96.     x: 10
  97.     y: 10
  98.  
  99. over3:
  100.     name: gegl-over
  101.     input: over2:output
  102.     aux: tr4:output
  103.  
  104. scale3:
  105.     name: gegl:scale
  106.     input: car-stack.png:output
  107.     origin-x: 0.0
  108.     origin-y: 0.0
  109.     filter: linear
  110.     hard-edges: false
  111.     x: 0.2
  112.     y: 0.2
  113.  
  114. invert1:
  115.     name: gegl:invert
  116.     input: scale3:output
  117.  
  118. tr5:
  119.     name: gegl:translate
  120.     input: invert1:output
  121.     x: 10
  122.     y: 100
  123.  
  124. over4:
  125.     name: gegl:over
  126.     input: over3:output
  127.     aux: tr5:output
  128.  
  129. scale4:
  130.     name: gegl:scale
  131.     input: car-stack.png:output
  132.     origin-x: 0.0
  133.     origin-y: 0.0
  134.     filter: linear
  135.     hard-edges: false
  136.     x: 0.2
  137.     y: 0.2
  138.  
  139. gamma:
  140.     name: gegl:gamma
  141.     input: scale4:output
  142.     value: 2.5
  143.  
  144. tr6:
  145.     name: gegl:translate
  146.     input: gamma:output
  147.     x: 10
  148.     y: 190
  149.  
  150. over5:
  151.     name: gegl:over
  152.     input: over4:output
  153.     aux: tr6:output
  154.  
  155. bb2:
  156.     name: gegl:box-blur
  157.     input: car-stack.png:output
  158.     radius: 5
  159.  
  160. scale5:
  161.     name: gegl:scale
  162.     input: bb2:output
  163.     origin-x: 0.0
  164.     origin-y: 0.0
  165.     filter: linear
  166.     hard-edges: false
  167.     x: 0.2
  168.     y: 0.2
  169.  
  170. tr7:
  171.     name: gegl:translate
  172.     input: scale5:output
  173.     x: 10
  174.     y: 280
  175.  
  176. over6:
  177.     name: gegl:over
  178.     input: over5:output
  179.     aux: tr7:output
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement