HowTo: Single Fisheye With THETA X - Control Front or Rear Lens

Image Size                      : 5504x5504

I just realized that the THETA X can take a single fisheye image at time.

This is a crop of the image.

example usage

{
    "name": "camera.setOptions",
    "parameters": {
        "options": {
            "fileFormat": {
				"height": 5504,
						"_mode": {
							"filter": "single",
							"lens": "front"
						},
				"type": "jpeg",
				"width": 5504
			}
	}
    }
}
curl --request POST \
  --url http://192.168.1.1/osc/commands/execute \
  --header 'Content-Type: application/json;charset=utf-8' \
  --data '{
    "name": "camera.setOptions",
    "parameters": {
        "options": {
            "fileFormat": {
							"height": 5504,
									"_mode": {
										"filter": "single",
										"lens": "front"
									},
							"type": "jpeg",
							"width": 5504
						}
				}
    }
}

available formats


{
	"height": 5504,
	"_mode": {
		"filter": "single",
		"lens": "front"
	},
	"type": "jpeg",
	"width": 5504
},
{
	"height": 5504,
	"_mode": {
		"filter": "single",
		"lens": "rear"
	},
	"type": "jpeg",
	"width": 5504
},
{
	"height": 2752,
	"_mode": {
		"filter": "single",
		"lens": "front"
	},
	"type": "jpeg",
	"width": 2752
},
{
	"height": 2752,
	"_mode": {
		"filter": "single",
		"lens": "rear"
	},
	"type": "jpeg",
	"width": 2752
}
1 Like