文件名称:osc:适用于Golang的Open Spherical Camera(OSC)API客户端
文件大小:13KB
文件格式:ZIP
更新时间:2024-05-18 05:14:14
Go
osc 适用于Golang的Open Spherical Camera(OSC)API客户端 例子 如果您知道其他API的用法,请参阅源代码并执行。 $ cd $GOPATH /src/github.com/toshi3221/osc/examples $ go run info.go http://(osc-host) camera.listImages命令 package main import ( "fmt" "github.com/toshi3221/osc" "github.com/toshi3221/osc/command" ) func main () { client , _ := osc . NewClient ( "host" ) command := new (command. ListImagesCommand ) parameters
【文件预览】:
osc-master
----.gitignore(293B)
----examples()
--------info.go(415B)
--------check_for_updates.go(424B)
--------state.go(401B)
--------list_images.go(830B)
--------get_metadata.go(796B)
--------options.go(2KB)
--------client_error_handling.go(232B)
--------get_image.go(593B)
--------delete.go(480B)
--------take_picture.go(2KB)
----command()
--------start_session.go(552B)
--------list_images.go(977B)
--------update_session.go(597B)
--------close_session.go(507B)
--------get_metadata.go(2KB)
--------options.go(5KB)
--------get_image.go(438B)
--------delete.go(449B)
--------take_picture.go(542B)
----README.md(2KB)
----client.go(4KB)
----command.go(113B)