Documentation ¶
Overview ¶
Package slam implements simultaneous localization and mapping. This is an Experimental package.
Index ¶
- Constants
- Variables
- func GetInternalStateFull(ctx context.Context, slamSvc Service) ([]byte, error)
- func GetLimits(ctx context.Context, svc Service) ([]referenceframe.Limit, error)
- func GetPointCloudMapFull(ctx context.Context, slamSvc Service) ([]byte, error)
- func HelperConcatenateChunksToFull(f func() ([]byte, error)) ([]byte, error)
- func Named(name string) resource.Name
- func NewRPCServiceServer(coll resource.APIResourceCollection[Service]) interface{}
- type Service
Constants ¶
const SubtypeName = "slam"
SubtypeName is the name of the type of service.
Variables ¶
var API = resource.APINamespaceRDK.WithServiceType(SubtypeName)
API is a variable that identifies the slam resource API.
Functions ¶
func GetInternalStateFull ¶ added in v0.2.21
GetInternalStateFull concatenates the streaming responses from GetInternalState into the internal serialized state of the slam algorithm.
func GetLimits ¶ added in v0.3.0
GetLimits returns the bounds of the slam map as a list of referenceframe.Limits.
func GetPointCloudMapFull ¶ added in v0.2.21
GetPointCloudMapFull concatenates the streaming responses from GetPointCloudMap into a full point cloud.
func HelperConcatenateChunksToFull ¶ added in v0.2.35
HelperConcatenateChunksToFull concatenates the chunks from a streamed grpc endpoint.
func NewRPCServiceServer ¶ added in v0.2.36
func NewRPCServiceServer(coll resource.APIResourceCollection[Service]) interface{}
NewRPCServiceServer constructs a the slam gRPC service server. It is intentionally untyped to prevent use outside of tests.
Types ¶
type Service ¶
type Service interface { resource.Resource GetPosition(ctx context.Context) (spatialmath.Pose, string, error) GetPointCloudMap(ctx context.Context) (func() ([]byte, error), error) GetInternalState(ctx context.Context) (func() ([]byte, error), error) GetLatestMapInfo(ctx context.Context) (time.Time, error) }
Service describes the functions that are available to the service.
Directories ¶
Path | Synopsis |
---|---|
Package fake implements a fake slam service
|
Package fake implements a fake slam service |
Package grpchelper implements helper functions to be used with slam service grpc clients
|
Package grpchelper implements helper functions to be used with slam service grpc clients |
internal
|
|
testhelper
Package testhelper implements a slam service definition with additional exported functions for the purpose of testing
|
Package testhelper implements a slam service definition with additional exported functions for the purpose of testing |
Package register registers all relevant slam models and also API specific functions
|
Package register registers all relevant slam models and also API specific functions |