{"id":37233,"date":"2026-03-28T23:59:27","date_gmt":"2026-03-28T23:59:27","guid":{"rendered":"https:\/\/garfnet.org.uk\/cms\/?p=37233"},"modified":"2026-05-26T22:12:12","modified_gmt":"2026-05-26T22:12:12","slug":"3d-sooc","status":"publish","type":"post","link":"https:\/\/garfnet.org.uk\/cms\/2026\/03\/28\/3d-sooc\/","title":{"rendered":"Unedited 3D SooC stereo pairs &#038; adding EXIF"},"content":{"rendered":"<p><strong>[Jump to <a href=\"#gallery\">gallery<\/a> | <a href=\"#script\">script<\/a> to add exif] These are some unedited 3D SooC (straight out of camera) 1600 x 1200 pixel stereo pairs (3200 x 1200 pixel overall)&nbsp; from my recently constructed stereo camera module. This is part of an ongoing project <a href=\"https:\/\/garfnet.org.uk\/cms\/2026\/03\/17\/a-modular-debian-gnu-linux-digital-camera-feasible-or-farcical\/\">to create a modular GNU\/Linux digital camera system<\/a> using easily available generic components.&nbsp;<\/strong><\/p>\n<p>These images are simple pairs. The image from the left camera is on the left and the right camera on the right. At this stage, there is no processing. And these won&#8217;t work as cross-eyed stereo pairs. That requires some processing, where the left and right images are swapped over. They were captured via a relatively simple ELP 3D camera module, mounted in a die-cast aluminium stomp box enclosure. The capture software was guvcview.<\/p>\n<h2><a name=\"gallery\"><\/a>Gallery<\/h2>\nngg_shortcode_0_placeholder\n<h2>Installing guvcview<\/h2>\n<p>To capture stills from this type of board requires suitable UVC software. One of the best for GNU\/Linux is GUVCView.<\/p>\n<pre>sudo apt install guvcview<\/pre>\n<p>This particular camera board supports YUYV output. This is better quality than the default motion JPEG (MJPG). But it only allows a few frames per second. Which is OK for still photography. In fact it is a sane compromise to make under these circumstances.<\/p>\n<h2><a name=\"script\"><\/a>BASH script to add EXIF data for our image files: garf-exif2image<\/h2>\n<p>When capturing from a video camera board using applications such as GUVCView, no EXIF data is recorded. However one can add some using ExifTool. To do this one needs a simple BASH shell script. This particular script also needs a &#8220;camera.txt&#8221; file in the same directory as the image files. WARNING. This script can alter the EXIF on ordinary photos too!<\/p>\n<pre>#!\/bin\/bash\r\n\r\n# garf-exif2image.\r\n# Tags images files created by UVC 3d camera and similar devices.\r\n# Usage: .\/garf-exif2image \/path-to\/images-and-camera.txt.\r\n# Requires exiftool and a valid camera.txt file.\r\n# Also sets EXIF date from file updated date.\r\n# By Garf 2026-04-18.\r\n\r\n# --- Directory (default = current folder) ---\r\nDIR=\"${1:-.}\"\r\n\r\n# --- ExifTool config (inside images directory) ---\r\nCONFIG=\"$DIR\/camera.txt\"\r\n\r\n# --- Validate directory ---\r\nif [ ! -d \"$DIR\" ]; then\r\necho \"Error: directory not found: $DIR\"\r\nexit 1\r\nfi\r\n\r\n# --- Check ExifTool exists ---\r\nif ! command -v exiftool &gt;\/dev\/null 2&gt;&amp;1; then\r\necho \"Error: exiftool is not installed or not in PATH\"\r\nexit 1\r\nfi\r\n\r\n# --- Check camera config exists ---\r\nif [ ! -f \"$CONFIG\" ]; then\r\necho \"Error: camera.txt not found: $CONFIG\"\r\nexit 1\r\nfi\r\n\r\necho \"Tagging files in: $DIR\"\r\necho \"Using config: $CONFIG\"\r\n\r\n# --- Run ExifTool ---\r\nexiftool -r \\\r\n-ext jpg -ext jpeg -ext png -ext webp \\\r\n-@ \"$CONFIG\" \\\r\n\"-DateTimeOriginal&lt;FileModifyDate\" \\\r\n\"-CreateDate&lt;FileModifyDate\" \\\r\n\"-ModifyDate&lt;FileModifyDate\" \\\r\n-P \\\r\n-overwrite_original \\\r\n\"$DIR\"\r\n\r\necho \"Done.\"<\/pre>\n<p>Copy and paste the above script to a text file and save it as &#8220;garf-exif2image&#8221;.&nbsp;<\/p>\n<h2>Permissions<\/h2>\n<p>Don&#8217;t forget to change the script file&#8217;s&nbsp; permissions to make it executable. From the same directory run the following command:-<\/p>\n<pre>chmod +x garf-exif2image<\/pre>\n<h2>Dependencies<\/h2>\n<p>This script requires ExifTool on your system. To install it on Debian-based systems, type or paste the following into a terminal and hit return:-<\/p>\n<pre>sudo apt install exiftool<\/pre>\n<h2>camera.txt<\/h2>\n<p>This particular script also requires a valid camera.txt. This is the one I used for the images in the gallery.<\/p>\n<pre># --- Device identity ---\r\n-Make=Garf Technology\r\n-Model=ELP 3200 x 1200 pixel 3D camera board\r\n-Software=UVC Capture Pipeline (GUVCView on Debian GNU\/Linux)\r\n\r\n# --- Optional hardware description ---\r\n-SensorType=CMOS\r\n-LensModel=Fixed Board Lens\r\n-FocalLength=Fixed\r\n\r\n# --- Only include exposure if you REALLY have it ---\r\n# (UVC often does NOT provide real values)\r\n\r\n# --- Image metadata ---\r\n-ColorSpace=sRGB\r\n\r\n# --- Ownership (important for galleries) ---\r\n-Artist=Garf Technology\r\n-Copyright=\u00a9 2026 Garf Technology\r\n\r\n# --- XMP for web\/gallery compatibility ---\r\n-XMP:Make=Garf Technology\r\n-XMP:Model=ELP 3200 x 1200 pixel 3D camera board\r\n-XMP:CreatorTool=GUVCView UVC Capture Pipeline\r\n-XMP:Creator=Garf Technology<\/pre>\n<h2>Credits<\/h2>\n<ul>\n<li>ExifTool by Phil Harvey\n<ul>\n<li><a href=\"https:\/\/exiftool.org\/\" target=\"_blank\" rel=\"noopener\">https:\/\/exiftool.org\/<\/a><\/li>\n<li><a href=\"https:\/\/en.wikipedia.org\/wiki\/ExifTool\" target=\"_blank\" rel=\"noopener\">https:\/\/en.wikipedia.org\/wiki\/ExifTool<\/a><\/li>\n<\/ul>\n<\/li>\n<li>GUVCView&nbsp;\n<ul>\n<li><a href=\"https:\/\/sourceforge.net\/p\/guvcview\/git-master\/ci\/master\/tree\/\" target=\"_blank\" rel=\"noopener\">https:\/\/sourceforge.net\/p\/guvcview\/git-master\/ci\/master\/tree\/<\/a><\/li>\n<li><a href=\"https:\/\/ubuntuhandbook.org\/index.php\/2024\/01\/uvc-webcam-software-guvcview-2-1-0\/\" target=\"_blank\" rel=\"noopener\">https:\/\/ubuntuhandbook.org\/index.php\/2024\/01\/uvc-webcam-software-guvcview-2-1-0\/<\/a><\/li>\n<li><a href=\"https:\/\/en.wikipedia.org\/wiki\/Guvcview\" target=\"_blank\" rel=\"noopener\">https:\/\/en.wikipedia.org\/wiki\/Guvcview<\/a><\/li>\n<\/ul>\n<\/li>\n<li>With many thanks to my friend and model Estella Rose for dressing up in her &#8220;Dorothy Gale&#8221; costume and posing for some test images.<\/li>\n<\/ul>\n<h2>Disclaimer<\/h2>\n<p>Scripts and other code are provided as-is, with no warranty, express or implied. They all work perfectly for me, but I cannot guarantee they will work for you.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>[Jump to gallery | script to add exif] These are some unedited 3D SooC (straight out of camera) 1600 x 1200 pixel stereo pairs (3200 x 1200 pixel overall)&nbsp; from my recently constructed stereo camera module. This is part of an ongoing project to create a modular GNU\/Linux digital camera system using easily available generic&#8230;<\/p>\n","protected":false},"author":1,"featured_media":37251,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"ngg_post_thumbnail":0,"_kad_post_transparent":"default","_kad_post_title":"default","_kad_post_layout":"default","_kad_post_sidebar_id":"","_kad_post_content_style":"default","_kad_post_vertical_padding":"default","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"_kad_post_classname":"","footnotes":""},"categories":[1636,1623,743,19,6,691,1667,680,1668,752,18],"tags":[],"class_list":["post-37233","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-debian","category-digital-photography","category-freebie","category-general","category-journal","category-linux","category-modular-camera-project","category-photography","category-shellscript","category-studio","category-technology"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Unedited 3D SooC stereo pairs &amp; adding EXIF - GarfNet<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/garfnet.org.uk\/cms\/2026\/03\/28\/3d-sooc\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Unedited 3D SooC stereo pairs &amp; adding EXIF - GarfNet\" \/>\n<meta property=\"og:description\" content=\"[Jump to gallery | script to add exif] These are some unedited 3D SooC (straight out of camera) 1600 x 1200 pixel stereo pairs (3200 x 1200 pixel overall)&nbsp; from my recently constructed stereo camera module. This is part of an ongoing project to create a modular GNU\/Linux digital camera system using easily available generic...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/garfnet.org.uk\/cms\/2026\/03\/28\/3d-sooc\/\" \/>\n<meta property=\"og:site_name\" content=\"GarfNet\" \/>\n<meta property=\"article:published_time\" content=\"2026-03-28T23:59:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-26T22:12:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2026\/05\/nggallery_import\/ELP-3D-210-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"960\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Garf\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Garf\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2026\\\/03\\\/28\\\/3d-sooc\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2026\\\/03\\\/28\\\/3d-sooc\\\/\"},\"author\":{\"name\":\"Garf\",\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/#\\\/schema\\\/person\\\/27529e0ea0460ec8c299743f70c06635\"},\"headline\":\"Unedited 3D SooC stereo pairs &#038; adding EXIF\",\"datePublished\":\"2026-03-28T23:59:27+00:00\",\"dateModified\":\"2026-05-26T22:12:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2026\\\/03\\\/28\\\/3d-sooc\\\/\"},\"wordCount\":468,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/#\\\/schema\\\/person\\\/27529e0ea0460ec8c299743f70c06635\"},\"image\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2026\\\/03\\\/28\\\/3d-sooc\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/nggallery_import\\\/ELP-3D-210-scaled.jpg\",\"articleSection\":[\"Debian\",\"Digital pictures\",\"Freebie\",\"General\",\"Journal\",\"Linux\",\"Modular Camera Project\",\"Photography\",\"Shell Scripts\",\"Studio Photography\",\"Technology\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2026\\\/03\\\/28\\\/3d-sooc\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2026\\\/03\\\/28\\\/3d-sooc\\\/\",\"url\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2026\\\/03\\\/28\\\/3d-sooc\\\/\",\"name\":\"Unedited 3D SooC stereo pairs & adding EXIF - GarfNet\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2026\\\/03\\\/28\\\/3d-sooc\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2026\\\/03\\\/28\\\/3d-sooc\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/nggallery_import\\\/ELP-3D-210-scaled.jpg\",\"datePublished\":\"2026-03-28T23:59:27+00:00\",\"dateModified\":\"2026-05-26T22:12:12+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2026\\\/03\\\/28\\\/3d-sooc\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2026\\\/03\\\/28\\\/3d-sooc\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2026\\\/03\\\/28\\\/3d-sooc\\\/#primaryimage\",\"url\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/nggallery_import\\\/ELP-3D-210-scaled.jpg\",\"contentUrl\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/nggallery_import\\\/ELP-3D-210-scaled.jpg\",\"width\":2560,\"height\":960},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2026\\\/03\\\/28\\\/3d-sooc\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Unedited 3D SooC stereo pairs &#038; adding EXIF\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/#website\",\"url\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/\",\"name\":\"GarfNet\",\"description\":\"Penguin-powered and full of Unixy goodness, since 1995...\",\"publisher\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/#\\\/schema\\\/person\\\/27529e0ea0460ec8c299743f70c06635\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/#\\\/schema\\\/person\\\/27529e0ea0460ec8c299743f70c06635\",\"name\":\"Garf\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/garflogo-garfnet-1.png\",\"url\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/garflogo-garfnet-1.png\",\"contentUrl\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/garflogo-garfnet-1.png\",\"width\":2420,\"height\":1928,\"caption\":\"Garf\"},\"logo\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/garflogo-garfnet-1.png\"},\"url\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/author\\\/garf-admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Unedited 3D SooC stereo pairs & adding EXIF - GarfNet","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/garfnet.org.uk\/cms\/2026\/03\/28\/3d-sooc\/","og_locale":"en_GB","og_type":"article","og_title":"Unedited 3D SooC stereo pairs & adding EXIF - GarfNet","og_description":"[Jump to gallery | script to add exif] These are some unedited 3D SooC (straight out of camera) 1600 x 1200 pixel stereo pairs (3200 x 1200 pixel overall)&nbsp; from my recently constructed stereo camera module. This is part of an ongoing project to create a modular GNU\/Linux digital camera system using easily available generic...","og_url":"https:\/\/garfnet.org.uk\/cms\/2026\/03\/28\/3d-sooc\/","og_site_name":"GarfNet","article_published_time":"2026-03-28T23:59:27+00:00","article_modified_time":"2026-05-26T22:12:12+00:00","og_image":[{"width":2560,"height":960,"url":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2026\/05\/nggallery_import\/ELP-3D-210-scaled.jpg","type":"image\/jpeg"}],"author":"Garf","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Garf","Estimated reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/garfnet.org.uk\/cms\/2026\/03\/28\/3d-sooc\/#article","isPartOf":{"@id":"https:\/\/garfnet.org.uk\/cms\/2026\/03\/28\/3d-sooc\/"},"author":{"name":"Garf","@id":"https:\/\/garfnet.org.uk\/cms\/#\/schema\/person\/27529e0ea0460ec8c299743f70c06635"},"headline":"Unedited 3D SooC stereo pairs &#038; adding EXIF","datePublished":"2026-03-28T23:59:27+00:00","dateModified":"2026-05-26T22:12:12+00:00","mainEntityOfPage":{"@id":"https:\/\/garfnet.org.uk\/cms\/2026\/03\/28\/3d-sooc\/"},"wordCount":468,"commentCount":0,"publisher":{"@id":"https:\/\/garfnet.org.uk\/cms\/#\/schema\/person\/27529e0ea0460ec8c299743f70c06635"},"image":{"@id":"https:\/\/garfnet.org.uk\/cms\/2026\/03\/28\/3d-sooc\/#primaryimage"},"thumbnailUrl":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2026\/05\/nggallery_import\/ELP-3D-210-scaled.jpg","articleSection":["Debian","Digital pictures","Freebie","General","Journal","Linux","Modular Camera Project","Photography","Shell Scripts","Studio Photography","Technology"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/garfnet.org.uk\/cms\/2026\/03\/28\/3d-sooc\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/garfnet.org.uk\/cms\/2026\/03\/28\/3d-sooc\/","url":"https:\/\/garfnet.org.uk\/cms\/2026\/03\/28\/3d-sooc\/","name":"Unedited 3D SooC stereo pairs & adding EXIF - GarfNet","isPartOf":{"@id":"https:\/\/garfnet.org.uk\/cms\/#website"},"primaryImageOfPage":{"@id":"https:\/\/garfnet.org.uk\/cms\/2026\/03\/28\/3d-sooc\/#primaryimage"},"image":{"@id":"https:\/\/garfnet.org.uk\/cms\/2026\/03\/28\/3d-sooc\/#primaryimage"},"thumbnailUrl":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2026\/05\/nggallery_import\/ELP-3D-210-scaled.jpg","datePublished":"2026-03-28T23:59:27+00:00","dateModified":"2026-05-26T22:12:12+00:00","breadcrumb":{"@id":"https:\/\/garfnet.org.uk\/cms\/2026\/03\/28\/3d-sooc\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/garfnet.org.uk\/cms\/2026\/03\/28\/3d-sooc\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/garfnet.org.uk\/cms\/2026\/03\/28\/3d-sooc\/#primaryimage","url":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2026\/05\/nggallery_import\/ELP-3D-210-scaled.jpg","contentUrl":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2026\/05\/nggallery_import\/ELP-3D-210-scaled.jpg","width":2560,"height":960},{"@type":"BreadcrumbList","@id":"https:\/\/garfnet.org.uk\/cms\/2026\/03\/28\/3d-sooc\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/garfnet.org.uk\/cms\/"},{"@type":"ListItem","position":2,"name":"Unedited 3D SooC stereo pairs &#038; adding EXIF"}]},{"@type":"WebSite","@id":"https:\/\/garfnet.org.uk\/cms\/#website","url":"https:\/\/garfnet.org.uk\/cms\/","name":"GarfNet","description":"Penguin-powered and full of Unixy goodness, since 1995...","publisher":{"@id":"https:\/\/garfnet.org.uk\/cms\/#\/schema\/person\/27529e0ea0460ec8c299743f70c06635"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/garfnet.org.uk\/cms\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":["Person","Organization"],"@id":"https:\/\/garfnet.org.uk\/cms\/#\/schema\/person\/27529e0ea0460ec8c299743f70c06635","name":"Garf","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2024\/07\/garflogo-garfnet-1.png","url":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2024\/07\/garflogo-garfnet-1.png","contentUrl":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2024\/07\/garflogo-garfnet-1.png","width":2420,"height":1928,"caption":"Garf"},"logo":{"@id":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2024\/07\/garflogo-garfnet-1.png"},"url":"https:\/\/garfnet.org.uk\/cms\/author\/garf-admin\/"}]}},"_links":{"self":[{"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/posts\/37233","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/comments?post=37233"}],"version-history":[{"count":19,"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/posts\/37233\/revisions"}],"predecessor-version":[{"id":37609,"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/posts\/37233\/revisions\/37609"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/media\/37251"}],"wp:attachment":[{"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/media?parent=37233"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/categories?post=37233"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/tags?post=37233"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}