github.com/pachyderm/pachyderm@v1.13.4/examples/opencv/montage.json (about) 1 { 2 "pipeline": { 3 "name": "montage" 4 }, 5 "description": "A pipeline that combines images from the `images` and `edges` repositories into a montage.", 6 "input": { 7 "cross": [ { 8 "pfs": { 9 "glob": "/", 10 "repo": "images" 11 } 12 }, 13 { 14 "pfs": { 15 "glob": "/", 16 "repo": "edges" 17 } 18 } ] 19 }, 20 "transform": { 21 "cmd": [ "sh" ], 22 "image": "dpokidov/imagemagick:7.0.10-58", 23 "stdin": [ "montage -shadow -background SkyBlue -geometry 300x300+2+2 $(find /pfs -type f | sort) /pfs/out/montage.png" ] 24 } 25 } 26