Documentation
¶
Overview ¶
Package camera defines an image capturing device. For more information, see the camera component docs.
Index ¶
- Constants
- Variables
- func DecodeImageFromCamera(ctx context.Context, mimeType string, extra map[string]interface{}, cam Camera) (image.Image, error)
- func Named(name string) resource.Name
- func NamesFromRobot(r robot.Robot) []string
- func NewPinholeModelWithBrownConradyDistortion(pinholeCameraIntrinsics *transform.PinholeCameraIntrinsics, ...) transform.PinholeCameraModel
- func NewPropertiesError(cameraIdentifier string) error
- func NewRPCServiceServer(coll resource.APIResourceCollection[Camera]) interface{}
- func NewUnsupportedImageTypeError(s ImageType) error
- func ReadImage(ctx context.Context, src gostream.VideoSource) (image.Image, func(), error)
- type Camera
- type ImageMetadata
- type ImageType
- type ImagesSource
- type NamedImage
- type PointCloudSource
- type Properties
- type VideoSource
- func FromVideoSource(name resource.Name, src VideoSource, logger logging.Logger) VideoSource
- func NewVideoSourceFromReader(ctx context.Context, reader gostream.VideoReader, ...) (VideoSource, error)
- func WrapVideoSourceWithProjector(ctx context.Context, source gostream.VideoSource, ...) (VideoSource, error)
Constants ¶
const ( UnspecifiedStream = ImageType("") ColorStream = ImageType("color") DepthStream = ImageType("depth") )
The allowed types of streams that can come from a VideoSource.
const SubtypeName = "camera"
SubtypeName is a constant that identifies the camera resource subtype string.
Variables ¶
var ( // ErrNoPeerConnection indicates there was no peer connection. ErrNoPeerConnection = errors.New("no PeerConnection") ErrNoSharedPeerConnection = errors.New("no Shared PeerConnection") // ErrUnknownSubscriptionID indicates that a SubscriptionID is unknown. ErrUnknownSubscriptionID = errors.New("subscriptionID Unknown") )
var API = resource.APINamespaceRDK.WithComponentType(SubtypeName)
API is a variable that identifies the camera resource API.
Functions ¶
func DecodeImageFromCamera ¶ added in v0.53.0
func DecodeImageFromCamera(ctx context.Context, mimeType string, extra map[string]interface{}, cam Camera) (image.Image, error)
DecodeImageFromCamera retrieves image bytes from a camera resource and serializes it as an image.Image.
func NamesFromRobot ¶
NamesFromRobot is a helper for getting all camera names from the given Robot.
func NewPinholeModelWithBrownConradyDistortion ¶ added in v0.2.13
func NewPinholeModelWithBrownConradyDistortion(pinholeCameraIntrinsics *transform.PinholeCameraIntrinsics, distortion *transform.BrownConrady, ) transform.PinholeCameraModel
NewPinholeModelWithBrownConradyDistortion is DEPRECATED!!! Please implement cameras according to the camera.Camera interface. NewPinholeModelWithBrownConradyDistortion creates a transform.PinholeCameraModel from a *transform.PinholeCameraIntrinsics and a *transform.BrownConrady. If *transform.BrownConrady is `nil`, transform.PinholeCameraModel.Distortion is not set & remains nil, to prevent https://go.dev/doc/faq#nil_error.
func NewPropertiesError ¶
NewPropertiesError returns an error specific to a failure in Properties.
func NewRPCServiceServer ¶ added in v0.2.36
func NewRPCServiceServer(coll resource.APIResourceCollection[Camera]) interface{}
NewRPCServiceServer constructs an camera gRPC service server. It is intentionally untyped to prevent use outside of tests.
func NewUnsupportedImageTypeError ¶ added in v0.2.4
NewUnsupportedImageTypeError is when the stream type is unknown.
Types ¶
type Camera ¶
type Camera interface { resource.Resource // Image returns a byte slice representing an image that tries to adhere to the MIME type hint. // Image also may return metadata about the frame. Image(ctx context.Context, mimeType string, extra map[string]interface{}) ([]byte, ImageMetadata, error) // Images is used for getting simultaneous images from different imagers, // along with associated metadata (just timestamp for now). It's not for getting a time series of images from the same imager. Images(ctx context.Context) ([]NamedImage, resource.ResponseMetadata, error) // NextPointCloud returns the next immediately available point cloud, not necessarily one // a part of a sequence. In the future, there could be streaming of point clouds. NextPointCloud(ctx context.Context) (pointcloud.PointCloud, error) // Properties returns properties that are intrinsic to the particular // implementation of a camera. Properties(ctx context.Context) (Properties, error) }
A Camera is a resource that can capture frames. For more information, see the camera component docs.
Image example:
myCamera, err := camera.FromRobot(machine, "my_camera") imageBytes, mimeType, err := myCamera.Image(context.Background(), utils.MimeTypeJPEG, nil)
Or try to directly decode as an image.Image:
myCamera, err := camera.FromRobot(machine, "my_camera") img, err = camera.DecodeImageFromCamera(context.Background(), utils.MimeTypeJPEG, nil, myCamera)
For more information, see the Image method docs.
Images example:
myCamera, err := camera.FromRobot(machine, "my_camera") images, metadata, err := myCamera.Images(context.Background())
For more information, see the Images method docs.
NextPointCloud example:
myCamera, err := camera.FromRobot(machine, "my_camera") // gets the next point cloud from a camera pointCloud, err := myCamera.NextPointCloud(context.Background())
For more information, see the NextPointCloud method docs.
Close example:
myCamera, err := camera.FromRobot(machine, "my_camera") err = myCamera.Close(context.Background())
For more information, see the Close method docs.
func FromDependencies ¶
func FromDependencies(deps resource.Dependencies, name string) (Camera, error)
FromDependencies is a helper for getting the named camera from a collection of dependencies.
type ImageMetadata ¶ added in v0.53.0
type ImageMetadata struct {
MimeType string
}
ImageMetadata contains useful information about returned image bytes such as its mimetype.
type ImageType ¶ added in v0.2.4
type ImageType string
ImageType specifies what kind of image stream is coming from the camera.
type ImagesSource ¶ added in v0.5.0
type ImagesSource interface {
Images(ctx context.Context) ([]NamedImage, resource.ResponseMetadata, error)
}
A ImagesSource is a source that can return a list of images with timestamp.
type NamedImage ¶ added in v0.7.3
NamedImage is a struct that associates the source from where the image came from to the Image.
type PointCloudSource ¶
type PointCloudSource interface {
NextPointCloud(ctx context.Context) (pointcloud.PointCloud, error)
}
A PointCloudSource is a source that can generate pointclouds.
type Properties ¶
type Properties struct { // SupportsPCD indicates that the Camera supports a valid // implementation of NextPointCloud SupportsPCD bool ImageType ImageType IntrinsicParams *transform.PinholeCameraIntrinsics DistortionParams transform.Distorter MimeTypes []string FrameRate float32 }
Properties is a lookup for a camera's features and settings.
type VideoSource ¶ added in v0.2.36
type VideoSource interface { Camera Stream(ctx context.Context, errHandlers ...gostream.ErrorHandler) (gostream.VideoStream, error) }
VideoSource is a camera that has `Stream` embedded to directly integrate with gostream. Note that generally, when writing camera components from scratch, embedding `Stream` is an anti-pattern.
func FromVideoSource ¶ added in v0.2.36
func FromVideoSource(name resource.Name, src VideoSource, logger logging.Logger) VideoSource
FromVideoSource is DEPRECATED!!! Please implement cameras according to the camera.Camera interface. FromVideoSource creates a Camera resource from a VideoSource. Note: this strips away Reconfiguration and DoCommand abilities. If needed, implement the Camera another way. For example, a webcam implements a Camera manually so that it can atomically reconfigure itself.
func NewVideoSourceFromReader ¶ added in v0.2.36
func NewVideoSourceFromReader( ctx context.Context, reader gostream.VideoReader, syst *transform.PinholeCameraModel, imageType ImageType, ) (VideoSource, error)
NewVideoSourceFromReader is DEPRECATED!!! Please implement cameras according to the camera.Camera interface. NewVideoSourceFromReader creates a VideoSource either with or without a projector. The stream type argument is for detecting whether or not the resulting camera supports return of pointcloud data in the absence of an implemented NextPointCloud function. If this is unknown or not applicable, a value of camera.Unspecified stream can be supplied.
func WrapVideoSourceWithProjector ¶ added in v0.2.36
func WrapVideoSourceWithProjector( ctx context.Context, source gostream.VideoSource, syst *transform.PinholeCameraModel, imageType ImageType, ) (VideoSource, error)
WrapVideoSourceWithProjector is DEPRECATED!!! Please implement cameras according to the camera.Camera interface. WrapVideoSourceWithProjector creates a Camera either with or without a projector. The stream type argument is for detecting whether or not the resulting camera supports return of pointcloud data in the absence of an implemented NextPointCloud function. If this is unknown or not applicable, a value of camera.Unspecified stream can be supplied.
Source Files
¶
Directories
¶
Path | Synopsis |
---|---|
Package fake implements a fake camera which always returns the same image with a user specified resolution.
|
Package fake implements a fake camera which always returns the same image with a user specified resolution. |
Package ffmpeg provides an implementation for an ffmpeg based camera
|
Package ffmpeg provides an implementation for an ffmpeg based camera |
Package register registers all relevant cameras and also API specific functions
|
Package register registers all relevant cameras and also API specific functions |
Package replaypcd implements a replay camera that can return point cloud data.
|
Package replaypcd implements a replay camera that can return point cloud data. |
Package rtppassthrough defines a Source of RTP packets
|
Package rtppassthrough defines a Source of RTP packets |
Package transformpipeline defines image sources that apply transforms on images, and can be composed into an image transformation pipeline.
|
Package transformpipeline defines image sources that apply transforms on images, and can be composed into an image transformation pipeline. |
Package videosource implements webcam.
|
Package videosource implements webcam. |