-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathvision.go
464 lines (435 loc) · 15.3 KB
/
vision.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
// Package vision is the service that allows you to access various computer vision algorithms
// (like detection, segmentation, tracking, etc) that usually only require a camera or image input.
// For more information, see the [vision service docs].
//
// [vision service docs]: https://docs.viam.com/services/vision/
package vision
import (
"context"
"image"
"github.com/pkg/errors"
"go.opencensus.io/trace"
servicepb "go.viam.com/api/service/vision/v1"
"go.viam.com/rdk/components/camera"
"go.viam.com/rdk/data"
"go.viam.com/rdk/resource"
"go.viam.com/rdk/robot"
viz "go.viam.com/rdk/vision"
"go.viam.com/rdk/vision/classification"
"go.viam.com/rdk/vision/objectdetection"
"go.viam.com/rdk/vision/segmentation"
"go.viam.com/rdk/vision/viscapture"
)
func init() {
resource.RegisterAPI(API, resource.APIRegistration[Service]{
RPCServiceServerConstructor: NewRPCServiceServer,
RPCServiceHandler: servicepb.RegisterVisionServiceHandlerFromEndpoint,
RPCServiceDesc: &servicepb.VisionService_ServiceDesc,
RPCClient: NewClientFromConn,
})
data.RegisterCollector(data.MethodMetadata{
API: API,
MethodName: captureAllFromCamera.String(),
}, newCaptureAllFromCameraCollector)
}
// A Service implements various computer vision algorithms like detection and segmentation.
// For more information, see the [vision service docs].
//
// DetectionsFromCamera example:
//
// myDetectorService, err := vision.FromRobot(machine, "my_detector")
// if err != nil {
// logger.Error(err)
// return
// }
//
// // Get detections from the camera output
// detections, err := myDetectorService.DetectionsFromCamera(context.Background(), "my_camera", nil)
// if err != nil {
// logger.Fatalf("Could not get detections: %v", err)
// }
// if len(detections) > 0 {
// logger.Info(detections[0])
// }
//
// Detections example:
//
// myCam, err := camera.FromRobot(machine, "my_camera")
// if err != nil {
// logger.Error(err)
// return
// }
// // Get the stream from a camera
// camStream, err := myCam.Stream(context.Background())
// // Get an image from the camera stream
// img, release, err := camStream.Next(context.Background())
// defer release()
//
// myDetectorService, err := vision.FromRobot(machine, "my_detector")
// if err != nil {
// logger.Error(err)
// return
// }
// // Get the detections from the image
// detections, err := myDetectorService.Detections(context.Background(), img, nil)
// if err != nil {
// logger.Fatalf("Could not get detections: %v", err)
// }
// if len(detections) > 0 {
// logger.Info(detections[0])
// }
//
// ClassificationsFromCamera example:
//
// myClassifierService, err := vision.FromRobot(machine, "my_classifier")
// if err != nil {
// logger.Error(err)
// return
// }
// // Get the 2 classifications with the highest confidence scores from the camera output
// classifications, err := myClassifierService.ClassificationsFromCamera(context.Background(), "my_camera", 2, nil)
// if err != nil {
// logger.Fatalf("Could not get classifications: %v", err)
// }
// if len(classifications) > 0 {
// logger.Info(classifications[0])
// }
//
// Classifications example:
//
// myCam, err := camera.FromRobot(machine, "my_camera")
// if err != nil {
// logger.Error(err)
// return
// }
// // Get the stream from a camera
// camStream, err := myCam.Stream(context.Background())
// if err!=nil {
// logger.Error(err)
// return
// }
// // Get an image from the camera stream
// img, release, err := camStream.Next(context.Background())
// defer release()
//
// myClassifierService, err := vision.FromRobot(machine, "my_classifier")
// if err != nil {
// logger.Error(err)
// return
// }
// // Get the 2 classifications with the highest confidence scores from the image
// classifications, err := myClassifierService.Classifications(context.Background(), img, 2, nil)
// if err != nil {
// logger.Fatalf("Could not get classifications: %v", err)
// }
// if len(classifications) > 0 {
// logger.Info(classifications[0])
// }
//
// GetObjectPointClouds example:
//
// mySegmenterService, err := vision.FromRobot(machine, "my_segmenter")
// if err != nil {
// logger.Error(err)
// return
// }
// // Get the objects from the camera output
// objects, err := mySegmenterService.GetObjectPointClouds(context.Background(), "my_camera", nil)
// if err != nil {
// logger.Fatalf("Could not get point clouds: %v", err)
// }
// if len(objects) > 0 {
// logger.Info(objects[0])
// }
//
// CaptureAllFromCamera example:
//
// // import ( "go.viam.com/rdk/vision/viscapture" )
// // The data to capture and return from the camera
// captOpts := viscapture.CaptureOptions{
// ReturnImage: true,
// ReturnDetections: true,
// }
// // Get the captured data for a camera
// capture, err := visService.CaptureAllFromCamera(context.Background(), "my_camera", captOpts, nil)
// if err != nil {
// logger.Fatalf("Could not get capture data from vision service: %v", err)
// }
// image := capture.Image
// detections := capture.Detections
// classifications := capture.Classifications
// objects := capture.Objects
//
// [vision service docs]: https://docs.viam.com/services/vision/
type Service interface {
resource.Resource
// DetectionsFromCamera returns a list of detections from the next image from a specified camera using a configured detector.
DetectionsFromCamera(ctx context.Context, cameraName string, extra map[string]interface{}) ([]objectdetection.Detection, error)
// Detections returns a list of detections from a given image using a configured detector.
Detections(ctx context.Context, img image.Image, extra map[string]interface{}) ([]objectdetection.Detection, error)
// ClassificationsFromCamera returns a list of classifications from the next image from a specified camera using a configured classifier.
ClassificationsFromCamera(
ctx context.Context,
cameraName string,
n int,
extra map[string]interface{},
) (classification.Classifications, error)
// Classifications returns a list of classifications from a given image using a configured classifier.
Classifications(
ctx context.Context,
img image.Image,
n int,
extra map[string]interface{},
) (classification.Classifications, error)
// GetObjectPointClouds returns a list of 3D point cloud objects and metadata from the latest 3D camera image using a specified segmenter.
GetObjectPointClouds(ctx context.Context, cameraName string, extra map[string]interface{}) ([]*viz.Object, error)
// properties
GetProperties(ctx context.Context, extra map[string]interface{}) (*Properties, error)
// CaptureAllFromCamera returns the next image, detections, classifications, and objects all together, given a camera name. Used for
// visualization.
CaptureAllFromCamera(ctx context.Context,
cameraName string,
opts viscapture.CaptureOptions,
extra map[string]interface{},
) (viscapture.VisCapture, error)
}
// SubtypeName is the name of the type of service.
const SubtypeName = "vision"
// API is a variable that identifies the vision service resource API.
var API = resource.APINamespaceRDK.WithServiceType(SubtypeName)
// Named is a helper for getting the named vision's typed resource name.
func Named(name string) resource.Name {
return resource.NewName(API, name)
}
// FromRobot is a helper for getting the named vision service from the given Robot.
func FromRobot(r robot.Robot, name string) (Service, error) {
return robot.ResourceFromRobot[Service](r, Named(name))
}
// FromDependencies is a helper for getting the named vision service from a collection of dependencies.
func FromDependencies(deps resource.Dependencies, name string) (Service, error) {
return resource.FromDependencies[Service](deps, Named(name))
}
// vizModel wraps the vision model with all the service interface methods.
type vizModel struct {
resource.Named
resource.AlwaysRebuild
r robot.Robot // in order to get access to all cameras
properties Properties
closerFunc func(ctx context.Context) error // close the underlying model
classifierFunc classification.Classifier
detectorFunc objectdetection.Detector
segmenter3DFunc segmentation.Segmenter
}
// Properties returns various information regarding the current vision service,
// specifically, which vision tasks are supported by the resource.
type Properties struct {
ClassificationSupported bool
DetectionSupported bool
ObjectPCDsSupported bool
}
// NewService wraps the vision model in the struct that fulfills the vision service interface.
func NewService(
name resource.Name,
r robot.Robot,
c func(ctx context.Context) error,
cf classification.Classifier,
df objectdetection.Detector,
s3f segmentation.Segmenter,
) (Service, error) {
if cf == nil && df == nil && s3f == nil {
return nil, errors.Errorf(
"model %q does not fulfill any method of the vision service. It is neither a detector, nor classifier, nor 3D segmenter", name)
}
p := Properties{false, false, false}
if cf != nil {
p.ClassificationSupported = true
}
if df != nil {
p.DetectionSupported = true
}
if s3f != nil {
p.ObjectPCDsSupported = true
}
return &vizModel{
Named: name.AsNamed(),
r: r,
properties: p,
closerFunc: c,
classifierFunc: cf,
detectorFunc: df,
segmenter3DFunc: s3f,
}, nil
}
// Detections returns the detections of given image if the model implements objectdetector.Detector.
func (vm *vizModel) Detections(
ctx context.Context,
img image.Image,
extra map[string]interface{},
) ([]objectdetection.Detection, error) {
ctx, span := trace.StartSpan(ctx, "service::vision::Detections::"+vm.Named.Name().String())
defer span.End()
if vm.detectorFunc == nil {
return nil, errors.Errorf("vision model %q does not implement a Detector", vm.Named.Name())
}
return vm.detectorFunc(ctx, img)
}
// DetectionsFromCamera returns the detections of the next image from the given camera.
func (vm *vizModel) DetectionsFromCamera(
ctx context.Context,
cameraName string,
extra map[string]interface{},
) ([]objectdetection.Detection, error) {
ctx, span := trace.StartSpan(ctx, "service::vision::DetectionsFromCamera::"+vm.Named.Name().String())
defer span.End()
if vm.detectorFunc == nil {
return nil, errors.Errorf("vision model %q does not implement a Detector", vm.Named.Name())
}
cam, err := camera.FromRobot(vm.r, cameraName)
if err != nil {
return nil, errors.Wrapf(err, "could not find camera named %s", cameraName)
}
img, release, err := camera.ReadImage(ctx, cam)
if err != nil {
return nil, errors.Wrapf(err, "could not get image from %s", cameraName)
}
defer release()
return vm.detectorFunc(ctx, img)
}
// Classifications returns the classifications of given image if the model implements classifications.Classifier.
func (vm *vizModel) Classifications(
ctx context.Context,
img image.Image,
n int,
extra map[string]interface{},
) (classification.Classifications, error) {
ctx, span := trace.StartSpan(ctx, "service::vision::Classifications::"+vm.Named.Name().String())
defer span.End()
if vm.classifierFunc == nil {
return nil, errors.Errorf("vision model %q does not implement a Classifier", vm.Named.Name())
}
fullClassifications, err := vm.classifierFunc(ctx, img)
if err != nil {
return nil, errors.Wrap(err, "could not get classifications from image")
}
return fullClassifications.TopN(n)
}
// ClassificationsFromCamera returns the classifications of the next image from the given camera.
func (vm *vizModel) ClassificationsFromCamera(
ctx context.Context,
cameraName string,
n int,
extra map[string]interface{},
) (classification.Classifications, error) {
ctx, span := trace.StartSpan(ctx, "service::vision::ClassificationsFromCamera::"+vm.Named.Name().String())
defer span.End()
if vm.classifierFunc == nil {
return nil, errors.Errorf("vision model %q does not implement a Classifier", vm.Named.Name())
}
cam, err := camera.FromRobot(vm.r, cameraName)
if err != nil {
return nil, errors.Wrapf(err, "could not find camera named %s", cameraName)
}
img, release, err := camera.ReadImage(ctx, cam)
if err != nil {
return nil, errors.Wrapf(err, "could not get image from %s", cameraName)
}
defer release()
fullClassifications, err := vm.classifierFunc(ctx, img)
if err != nil {
return nil, errors.Wrap(err, "could not get classifications from image")
}
return fullClassifications.TopN(n)
}
// GetObjectPointClouds returns all the found objects in a 3D image if the model implements Segmenter3D.
func (vm *vizModel) GetObjectPointClouds(
ctx context.Context,
cameraName string,
extra map[string]interface{},
) ([]*viz.Object, error) {
if vm.segmenter3DFunc == nil {
return nil, errors.Errorf("vision model %q does not implement a 3D segmenter", vm.Named.Name().String())
}
ctx, span := trace.StartSpan(ctx, "service::vision::GetObjectPointClouds::"+vm.Named.Name().String())
defer span.End()
cam, err := camera.FromRobot(vm.r, cameraName)
if err != nil {
return nil, err
}
return vm.segmenter3DFunc(ctx, cam)
}
// GetProperties returns a Properties object that details the vision capabilities of the model.
func (vm *vizModel) GetProperties(ctx context.Context, extra map[string]interface{}) (*Properties, error) {
_, span := trace.StartSpan(ctx, "service::vision::GetProperties::"+vm.Named.Name().String())
defer span.End()
return &vm.properties, nil
}
func (vm *vizModel) CaptureAllFromCamera(
ctx context.Context,
cameraName string,
opt viscapture.CaptureOptions,
extra map[string]interface{},
) (viscapture.VisCapture, error) {
ctx, span := trace.StartSpan(ctx, "service::vision::ClassificationsFromCamera::"+vm.Named.Name().String())
defer span.End()
cam, err := camera.FromRobot(vm.r, cameraName)
if err != nil {
return viscapture.VisCapture{}, errors.Wrapf(err, "could not find camera named %s", cameraName)
}
img, release, err := camera.ReadImage(ctx, cam)
if err != nil {
return viscapture.VisCapture{}, errors.Wrapf(err, "could not get image from %s", cameraName)
}
defer release()
logger := vm.r.Logger()
var detections []objectdetection.Detection
if opt.ReturnDetections {
if !vm.properties.DetectionSupported {
logger.Debugf("detections requested but vision model %q does not implement a Detector", vm.Named.Name())
} else {
detections, err = vm.Detections(ctx, img, extra)
if err != nil {
return viscapture.VisCapture{}, err
}
}
}
var classifications classification.Classifications
if opt.ReturnClassifications {
logger := vm.r.Logger()
if !vm.properties.ClassificationSupported {
logger.Debugf("classifications requested in CaptureAll but vision model %q does not implement a Classifier",
vm.Named.Name())
} else {
classifications, err = vm.Classifications(ctx, img, 0, extra)
if err != nil {
return viscapture.VisCapture{}, err
}
}
}
var objPCD []*viz.Object
if opt.ReturnObject {
if !vm.properties.ObjectPCDsSupported {
logger := vm.r.Logger()
logger.Debugf("object point cloud requested in CaptureAll but vision model %q does not implement a 3D Segmenter", vm.Named.Name())
} else {
objPCD, err = vm.GetObjectPointClouds(ctx, cameraName, extra)
if err != nil {
return viscapture.VisCapture{}, err
}
}
}
if !opt.ReturnImage {
img = nil
}
return viscapture.VisCapture{
Image: img,
Detections: detections,
Classifications: classifications,
Objects: objPCD,
}, nil
}
func (vm *vizModel) Close(ctx context.Context) error {
if vm.closerFunc == nil {
return nil
}
return vm.closerFunc(ctx)
}