@@ -11,6 +11,7 @@ import (
11
11
12
12
"go.viam.com/rdk/components/camera"
13
13
"go.viam.com/rdk/gostream"
14
+ "go.viam.com/rdk/logging"
14
15
"go.viam.com/rdk/pointcloud"
15
16
"go.viam.com/rdk/resource"
16
17
"go.viam.com/rdk/rimage"
@@ -168,35 +169,46 @@ func (cs *cloudSource) NextPointCloud(ctx context.Context) (pointcloud.PointClou
168
169
}
169
170
170
171
func TestCameraWithNoProjector (t * testing.T ) {
172
+ logger := logging .NewTestLogger (t )
171
173
videoSrc := & simpleSource {"rimage/board1" }
172
174
noProj , err := camera .NewVideoSourceFromReader (context .Background (), videoSrc , nil , camera .DepthStream )
173
175
test .That (t , err , test .ShouldBeNil )
174
176
_ , err = noProj .NextPointCloud (context .Background ())
175
177
test .That (t , errors .Is (err , transform .ErrNoIntrinsics ), test .ShouldBeTrue )
176
178
177
179
// make a camera with a NextPointCloudFunction
178
- videoSrc2 := & cloudSource {Named : camera .Named ("foo" ).AsNamed (), simpleSource : videoSrc }
179
- noProj2 , err := camera .NewVideoSourceFromReader (context .Background (), videoSrc2 , nil , camera .DepthStream )
180
+ cloudSrc2 := & cloudSource {Named : camera .Named ("foo" ).AsNamed (), simpleSource : videoSrc }
181
+ videoSrc2 , err := camera .NewVideoSourceFromReader (context .Background (), cloudSrc2 , nil , camera .DepthStream )
182
+ noProj2 := camera .FromVideoSource (resource .NewName (camera .API , "bar" ), videoSrc2 , logger )
180
183
test .That (t , err , test .ShouldBeNil )
181
184
pc , err := noProj2 .NextPointCloud (context .Background ())
182
185
test .That (t , err , test .ShouldBeNil )
183
186
_ , got := pc .At (0 , 0 , 0 )
184
187
test .That (t , got , test .ShouldBeTrue )
185
188
186
- img , _ , err := camera .ReadImage (
187
- gostream .WithMIMETypeHint (context .Background (), rutils .WithLazyMIMEType (rutils .MimeTypePNG )),
188
- noProj2 )
189
+ // TODO(hexbabe): remove below test when Stream is refactored
190
+ t .Run ("ReadImage depth map without projector" , func (t * testing.T ) {
191
+ img , _ , err := camera .ReadImage (
192
+ gostream .WithMIMETypeHint (context .Background (), rutils .WithLazyMIMEType (rutils .MimeTypePNG )),
193
+ noProj2 )
194
+ test .That (t , err , test .ShouldBeNil )
195
+ depthImg := img .(* rimage.DepthMap )
196
+ test .That (t , err , test .ShouldBeNil )
197
+ test .That (t , depthImg .Bounds ().Dx (), test .ShouldEqual , 1280 )
198
+ test .That (t , depthImg .Bounds ().Dy (), test .ShouldEqual , 720 )
199
+ })
200
+
201
+ img , err := camera .DecodeImageFromCamera (context .Background (), rutils .WithLazyMIMEType (rutils .MimeTypePNG ), nil , noProj2 )
189
202
test .That (t , err , test .ShouldBeNil )
190
203
191
- depthImg := img .(* rimage.DepthMap )
192
- test .That (t , err , test .ShouldBeNil )
193
- test .That (t , depthImg .Bounds ().Dx (), test .ShouldEqual , 1280 )
194
- test .That (t , depthImg .Bounds ().Dy (), test .ShouldEqual , 720 )
204
+ test .That (t , img .Bounds ().Dx (), test .ShouldEqual , 1280 )
205
+ test .That (t , img .Bounds ().Dy (), test .ShouldEqual , 720 )
195
206
196
207
test .That (t , noProj2 .Close (context .Background ()), test .ShouldBeNil )
197
208
}
198
209
199
210
func TestCameraWithProjector (t * testing.T ) {
211
+ logger := logging .NewTestLogger (t )
200
212
videoSrc := & simpleSource {"rimage/board1" }
201
213
params1 := & transform.PinholeCameraIntrinsics { // not the real camera parameters -- fake for test
202
214
Width : 1280 ,
@@ -219,32 +231,50 @@ func TestCameraWithProjector(t *testing.T) {
219
231
test .That (t , src .Close (context .Background ()), test .ShouldBeNil )
220
232
221
233
// camera with a point cloud function
222
- videoSrc2 := & cloudSource {Named : camera .Named ("foo" ).AsNamed (), simpleSource : videoSrc }
234
+ cloudSrc2 := & cloudSource {Named : camera .Named ("foo" ).AsNamed (), simpleSource : videoSrc }
223
235
props , err := src .Properties (context .Background ())
224
236
test .That (t , err , test .ShouldBeNil )
225
- cam2 , err := camera .NewVideoSourceFromReader (
237
+ videoSrc2 , err := camera .NewVideoSourceFromReader (
226
238
context .Background (),
227
- videoSrc2 ,
239
+ cloudSrc2 ,
228
240
& transform.PinholeCameraModel {PinholeCameraIntrinsics : props .IntrinsicParams },
229
241
camera .DepthStream ,
230
242
)
243
+ cam2 := camera .FromVideoSource (resource .NewName (camera .API , "bar" ), videoSrc2 , logger )
231
244
test .That (t , err , test .ShouldBeNil )
232
- pc , err = cam2 .NextPointCloud (context .Background ())
245
+ pc , err = videoSrc2 .NextPointCloud (context .Background ())
233
246
test .That (t , err , test .ShouldBeNil )
234
247
_ , got := pc .At (0 , 0 , 0 )
235
248
test .That (t , got , test .ShouldBeTrue )
236
249
237
- img , _ , err := camera .ReadImage (
238
- gostream .WithMIMETypeHint (context .Background (), rutils .MimeTypePNG ),
239
- cam2 )
250
+ // TODO(hexbabe): remove below test when Stream/ReadImage pattern is refactored
251
+ t .Run ("ReadImage depth map with projector" , func (t * testing.T ) {
252
+ img , _ , err := camera .ReadImage (
253
+ gostream .WithMIMETypeHint (context .Background (), rutils .MimeTypePNG ),
254
+ cam2 )
255
+ test .That (t , err , test .ShouldBeNil )
256
+
257
+ depthImg := img .(* rimage.DepthMap )
258
+ test .That (t , err , test .ShouldBeNil )
259
+ test .That (t , depthImg .Bounds ().Dx (), test .ShouldEqual , 1280 )
260
+ test .That (t , depthImg .Bounds ().Dy (), test .ShouldEqual , 720 )
261
+ // cam2 should implement a default GetImages, that just returns the one image
262
+ images , _ , err := cam2 .Images (context .Background ())
263
+ test .That (t , err , test .ShouldBeNil )
264
+ test .That (t , len (images ), test .ShouldEqual , 1 )
265
+ test .That (t , images [0 ].Image , test .ShouldHaveSameTypeAs , & rimage.DepthMap {})
266
+ test .That (t , images [0 ].Image .Bounds ().Dx (), test .ShouldEqual , 1280 )
267
+ test .That (t , images [0 ].Image .Bounds ().Dy (), test .ShouldEqual , 720 )
268
+ })
269
+
270
+ img , err := camera .DecodeImageFromCamera (context .Background (), rutils .MimeTypePNG , nil , cam2 )
240
271
test .That (t , err , test .ShouldBeNil )
241
272
242
- depthImg := img .(* rimage.DepthMap )
243
273
test .That (t , err , test .ShouldBeNil )
244
- test .That (t , depthImg .Bounds ().Dx (), test .ShouldEqual , 1280 )
245
- test .That (t , depthImg .Bounds ().Dy (), test .ShouldEqual , 720 )
274
+ test .That (t , img .Bounds ().Dx (), test .ShouldEqual , 1280 )
275
+ test .That (t , img .Bounds ().Dy (), test .ShouldEqual , 720 )
246
276
// cam2 should implement a default GetImages, that just returns the one image
247
- images , _ , err := cam2 .Images (context .Background ())
277
+ images , _ , err := videoSrc2 .Images (context .Background ())
248
278
test .That (t , err , test .ShouldBeNil )
249
279
test .That (t , len (images ), test .ShouldEqual , 1 )
250
280
test .That (t , images [0 ].Image , test .ShouldHaveSameTypeAs , & rimage.DepthMap {})
0 commit comments