machine-vision-formats 0.1.7

Types and traits for working with raw image data from machine vision cameras
Documentation
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
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
//! Types to facilitate iterating over images

use crate::{pixel_format, ImageMutStride, ImageStride, PixelFormat};

/// An image whose rows can be iterated over.
// In a semver-breaking change, we could eliminate this trait and make its
// method part of ImageStride.
pub trait HasRowChunksExact<F>: ImageStride<F> {
    fn rowchunks_exact(&self) -> RowChunksExact<'_>;
}

impl<S, F> HasRowChunksExact<F> for S
where
    S: ImageStride<F>,
    F: PixelFormat,
{
    fn rowchunks_exact(&self) -> RowChunksExact<'_> {
        let fmt = pixel_format::pixfmt::<F>().unwrap();
        let valid_stride = fmt.bits_per_pixel() as usize * self.width() as usize / 8;

        let stride = self.stride();
        let height = self.height() as usize;
        let buf = self.buffer_ref().data;
        let max_len = buf.len().min(stride * height);
        let buf = &buf[..max_len];

        RowChunksExact {
            height,
            buf,
            stride,
            valid_stride,
        }
    }
}

pub struct RowChunksExact<'a> {
    height: usize,
    buf: &'a [u8],
    stride: usize,
    valid_stride: usize,
}

impl std::fmt::Debug for RowChunksExact<'_> {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        f.debug_struct("RowChunksExact")
            .field("stride", &self.stride)
            .field("valid_stride", &self.valid_stride)
            .finish_non_exhaustive()
    }
}

impl<'a> Iterator for RowChunksExact<'a> {
    type Item = &'a [u8];

    fn next(&mut self) -> Option<Self::Item> {
        if self.height == 0 {
            return None;
        }
        debug_assert!(self.buf.len() >= self.valid_stride);
        let mut data: &'a [u8] = &[];
        std::mem::swap(&mut self.buf, &mut data);
        self.height -= 1;
        if data.len() > self.stride {
            let (first, rest) = data.split_at(self.stride);
            self.buf = rest;
            Some(&first[..self.valid_stride])
        } else {
            Some(&data[..self.valid_stride])
        }
    }
}

impl<'a> DoubleEndedIterator for RowChunksExact<'a> {
    fn next_back(&mut self) -> Option<Self::Item> {
        if self.height == 0 {
            return None;
        }
        debug_assert!(self.buf.len() >= self.valid_stride);
        // self.buf begins with first row. We want to return the last row, which
        // may be partial.
        let last_row_start = (self.height - 1) * self.stride;
        let mut data: &[u8] = &[];
        std::mem::swap(&mut self.buf, &mut data);
        let (first, rest) = data.split_at(last_row_start);
        self.buf = first;
        self.height -= 1;
        Some(&rest[..self.valid_stride])
    }
}

/// An image whose mutable rows can be iterated over.
// In a semver-breaking change, we could eliminate this trait and make its
// method part of ImageMutStride.
pub trait HasRowChunksExactMut<F>: ImageMutStride<F> {
    fn rowchunks_exact_mut(&mut self) -> RowChunksExactMut<'_>;
}
impl<S, F> HasRowChunksExactMut<F> for S
where
    S: ImageMutStride<F>,
    F: PixelFormat,
{
    fn rowchunks_exact_mut(&mut self) -> RowChunksExactMut<'_> {
        let fmt = pixel_format::pixfmt::<F>().unwrap();
        let valid_stride = fmt.bits_per_pixel() as usize * self.width() as usize / 8;

        let stride = self.stride();
        let height = self.height() as usize;
        let buf = self.buffer_mut_ref().data;
        let max_len = buf.len().min(stride * height);
        let buf = &mut buf[..max_len];
        RowChunksExactMut {
            height,
            buf,
            stride,
            valid_stride,
        }
    }
}

pub struct RowChunksExactMut<'a> {
    height: usize,
    buf: &'a mut [u8],
    stride: usize,
    valid_stride: usize,
}

impl std::fmt::Debug for RowChunksExactMut<'_> {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        f.debug_struct("RowChunksExactMut")
            .field("stride", &self.stride)
            .field("valid_stride", &self.valid_stride)
            .finish_non_exhaustive()
    }
}

impl<'a> Iterator for RowChunksExactMut<'a> {
    type Item = &'a mut [u8];

    fn next(&mut self) -> Option<Self::Item> {
        if self.height == 0 {
            return None;
        }
        debug_assert!(self.buf.len() >= self.valid_stride);
        let mut data: &'a mut [u8] = &mut [];
        std::mem::swap(&mut self.buf, &mut data);
        self.height -= 1;
        if data.len() > self.stride {
            let (first, rest) = data.split_at_mut(self.stride);
            self.buf = rest;
            Some(&mut first[..self.valid_stride])
        } else {
            Some(&mut data[..self.valid_stride])
        }
    }
}

impl<'a> DoubleEndedIterator for RowChunksExactMut<'a> {
    fn next_back(&mut self) -> Option<Self::Item> {
        if self.height == 0 {
            return None;
        }
        debug_assert!(self.buf.len() >= self.valid_stride);
        // self.buf begins with first row. We want to return the last row, which
        // may be partial.
        let last_row_start = (self.height - 1) * self.stride;
        let mut data: &'a mut [u8] = &mut [];
        std::mem::swap(&mut self.buf, &mut data);
        let (first, rest) = data.split_at_mut(last_row_start);
        self.buf = first;
        self.height -= 1;
        Some(&mut rest[..self.valid_stride])
    }
}

#[cfg(test)]
mod test {
    use crate::{
        iter::{HasRowChunksExact, HasRowChunksExactMut},
        pixel_format::Mono8,
        ImageBuffer, ImageBufferMutRef, ImageBufferRef, ImageData, ImageMutData, Stride,
    };

    struct RoiIm<'a> {
        width: u32,
        height: u32,
        stride: usize,
        buf: &'a [u8],
    }

    impl Stride for RoiIm<'_> {
        fn stride(&self) -> usize {
            self.stride
        }
    }

    impl ImageData<Mono8> for RoiIm<'_> {
        fn width(&self) -> u32 {
            self.width
        }
        fn height(&self) -> u32 {
            self.height
        }
        fn buffer_ref(&self) -> ImageBufferRef<'_, Mono8> {
            ImageBufferRef {
                data: self.buf,
                pixel_format: std::marker::PhantomData,
            }
        }
        fn buffer(self) -> ImageBuffer<Mono8> {
            // copy the data
            self.buffer_ref().to_buffer()
        }
    }

    struct RoiImMut<'a> {
        width: u32,
        height: u32,
        stride: usize,
        buf: &'a mut [u8],
    }

    impl Stride for RoiImMut<'_> {
        fn stride(&self) -> usize {
            self.stride
        }
    }

    impl ImageData<Mono8> for RoiImMut<'_> {
        fn width(&self) -> u32 {
            self.width
        }
        fn height(&self) -> u32 {
            self.height
        }
        fn buffer_ref(&self) -> ImageBufferRef<'_, Mono8> {
            ImageBufferRef {
                data: self.buf,
                pixel_format: std::marker::PhantomData,
            }
        }
        fn buffer(self) -> ImageBuffer<Mono8> {
            // copy the data
            self.buffer_ref().to_buffer()
        }
    }

    impl ImageMutData<Mono8> for RoiImMut<'_> {
        fn buffer_mut_ref(&mut self) -> ImageBufferMutRef<'_, Mono8> {
            ImageBufferMutRef {
                data: self.buf,
                pixel_format: std::marker::PhantomData,
            }
        }
    }

    #[test]
    fn test_roi_at_start() {
        const STRIDE: usize = 10;
        const ORIG_W: usize = 10;
        const ORIG_H: usize = 10;
        let mut image_data = [0u8; STRIDE * ORIG_H];

        // fill with useful pattern
        for row in 0..ORIG_H {
            for col in 0..ORIG_W {
                image_data[row * STRIDE + col] = (row * 10_usize + col) as u8;
            }
        }

        // generate an ROI
        let width = 2;
        let height = 2;
        let (row, col) = (2, 2);

        // create image of this ROI
        let im = RoiIm {
            width,
            height,
            stride: STRIDE,
            buf: &image_data[(row * STRIDE + col)..],
        };

        let mut rowchunk_iter = im.rowchunks_exact();
        assert_eq!(rowchunk_iter.next(), Some(&[22, 23][..]));
        assert_eq!(rowchunk_iter.next(), Some(&[32, 33][..]));
        assert_eq!(rowchunk_iter.next(), None);
    }

    #[test]
    fn test_roi_at_end() {
        const STRIDE: usize = 10;
        const ORIG_W: usize = 10;
        const ORIG_H: usize = 10;
        let mut image_data = [0u8; STRIDE * ORIG_H];

        // fill with useful pattern
        for row in 0..ORIG_H {
            for col in 0..ORIG_W {
                image_data[row * STRIDE + col] = (row * 10_usize + col) as u8;
            }
        }

        // generate an ROI
        let width = 3;
        let height = 4;
        let (row, col) = (6, 7);

        // create image of this ROI
        let im = RoiIm {
            width,
            height,
            stride: STRIDE,
            buf: &image_data[(row * STRIDE + col)..],
        };

        let mut rowchunk_iter = im.rowchunks_exact();
        assert_eq!(rowchunk_iter.next(), Some(&[67, 68, 69][..]));
        assert_eq!(rowchunk_iter.next(), Some(&[77, 78, 79][..]));
        assert_eq!(rowchunk_iter.next(), Some(&[87, 88, 89][..]));
        assert_eq!(rowchunk_iter.next(), Some(&[97, 98, 99][..]));
        assert_eq!(rowchunk_iter.next(), None);
    }

    #[test]
    fn test_mut_roi_at_start() {
        const STRIDE: usize = 10;
        const ORIG_W: usize = 10;
        const ORIG_H: usize = 10;
        let mut image_data = [0u8; STRIDE * ORIG_H];

        // fill with useful pattern
        for row in 0..ORIG_H {
            for col in 0..ORIG_W {
                image_data[row * STRIDE + col] = (row * 10_usize + col) as u8;
            }
        }

        // generate an ROI
        let width = 2;
        let height = 2;
        let (row, col) = (2, 2);

        {
            // create mutable image of this ROI
            let mut im = RoiImMut {
                width,
                height,
                stride: STRIDE,
                buf: &mut image_data[(row * STRIDE + col)..],
            };

            let mut rowchunk_iter = im.rowchunks_exact_mut();
            let mut row2 = rowchunk_iter.next();
            assert_eq!(row2, Some(&mut [22, 23][..]));
            row2.as_mut().unwrap()[0] += 100;
            row2.as_mut().unwrap()[1] += 100;
            let mut row3 = rowchunk_iter.next();
            assert_eq!(row3, Some(&mut [32, 33][..]));
            row3.as_mut().unwrap()[0] += 100;
            row3.as_mut().unwrap()[1] += 100;
            assert_eq!(rowchunk_iter.next(), None);
        }

        // create image of this ROI
        let im = RoiIm {
            width,
            height,
            stride: STRIDE,
            buf: &image_data[(row * STRIDE + col)..],
        };

        let mut rowchunk_iter = im.rowchunks_exact();
        assert_eq!(rowchunk_iter.next(), Some(&[122, 123][..]));
        assert_eq!(rowchunk_iter.next(), Some(&[132, 133][..]));
        assert_eq!(rowchunk_iter.next(), None);
    }

    #[test]
    fn test_mut_roi_at_end() {
        const STRIDE: usize = 10;
        const ORIG_W: usize = 10;
        const ORIG_H: usize = 10;
        let mut image_data = [0u8; STRIDE * ORIG_H];

        // fill with useful pattern
        for row in 0..ORIG_H {
            for col in 0..ORIG_W {
                image_data[row * STRIDE + col] = (row * 10_usize + col) as u8;
            }
        }

        // generate an ROI
        let width = 3;
        let height = 4;
        let (row, col) = (6, 7);

        {
            // create mutable image of this ROI
            let mut im = RoiImMut {
                width,
                height,
                stride: STRIDE,
                buf: &mut image_data[(row * STRIDE + col)..],
            };

            let mut rowchunk_iter = im.rowchunks_exact_mut();
            for row_num in row..(row + height as usize) {
                let mut this_row = rowchunk_iter.next();
                assert_eq!(
                    this_row,
                    Some(
                        &mut [
                            row_num as u8 * 10 + col as u8,
                            row_num as u8 * 10 + col as u8 + 1,
                            row_num as u8 * 10 + col as u8 + 2
                        ][..]
                    )
                );
                for col in 0..width as usize {
                    this_row.as_mut().unwrap()[col] += 100;
                }
            }
            assert_eq!(rowchunk_iter.next(), None);
        }

        // create image of this ROI
        let im = RoiIm {
            width,
            height,
            stride: STRIDE,
            buf: &image_data[(row * STRIDE + col)..],
        };

        let mut rowchunk_iter = im.rowchunks_exact();
        assert_eq!(rowchunk_iter.next(), Some(&[167, 168, 169][..]));
        assert_eq!(rowchunk_iter.next(), Some(&[177, 178, 179][..]));
        assert_eq!(rowchunk_iter.next(), Some(&[187, 188, 189][..]));
        assert_eq!(rowchunk_iter.next(), Some(&[197, 198, 199][..]));
        assert_eq!(rowchunk_iter.next(), None);
    }

    #[test]
    fn test_mut_roi_reverse_iterator() {
        const STRIDE: usize = 10;
        const ORIG_W: usize = 10;
        const ORIG_H: usize = 10;
        let mut image_data = [0u8; STRIDE * ORIG_H];

        // fill with useful pattern
        for row in 0..ORIG_H {
            for col in 0..ORIG_W {
                image_data[row * STRIDE + col] = (row * 10_usize + col) as u8;
            }
        }

        // generate an ROI
        let width = 2;
        let height = 4;
        let (row, col) = (2, 2);

        {
            // create mutable image of this ROI
            let mut im = RoiImMut {
                width,
                height,
                stride: STRIDE,
                buf: &mut image_data[(row * STRIDE + col)..],
            };

            // test length of backwards iterator
            {
                let mut rowchunk_iter = im.rowchunks_exact_mut();
                assert!(rowchunk_iter.next_back().is_some());
                assert!(rowchunk_iter.next_back().is_some());
                assert!(rowchunk_iter.next_back().is_some());
                assert!(rowchunk_iter.next_back().is_some());
                assert!(rowchunk_iter.next_back().is_none());
            }

            // test interleaved forward and backward iteration
            {
                let mut rowchunk_iter = im.rowchunks_exact_mut();
                let mut row5 = rowchunk_iter.next_back();
                assert_eq!(row5, Some(&mut [52, 53][..]));
                row5.as_mut().unwrap()[0] += 100;
                row5.as_mut().unwrap()[1] += 100;
                let mut row2 = rowchunk_iter.next();
                assert_eq!(row2, Some(&mut [22, 23][..]));
                row2.as_mut().unwrap()[0] += 100;
                row2.as_mut().unwrap()[1] += 100;

                let mut row4 = rowchunk_iter.next_back();
                assert_eq!(row4, Some(&mut [42, 43][..]));
                row4.as_mut().unwrap()[0] += 100;
                row4.as_mut().unwrap()[1] += 100;

                let mut row3 = rowchunk_iter.next();
                assert_eq!(row3, Some(&mut [32, 33][..]));
                row3.as_mut().unwrap()[0] += 100;
                row3.as_mut().unwrap()[1] += 100;

                assert_eq!(rowchunk_iter.next_back(), None);
            }
        }

        // create image of this ROI
        let im = RoiIm {
            width,
            height,
            stride: STRIDE,
            buf: &image_data[(row * STRIDE + col)..],
        };

        let mut rowchunk_iter = im.rowchunks_exact();
        assert_eq!(rowchunk_iter.next(), Some(&[122, 123][..]));
        assert_eq!(rowchunk_iter.next(), Some(&[132, 133][..]));
        assert_eq!(rowchunk_iter.next(), Some(&[142, 143][..]));
        assert_eq!(rowchunk_iter.next(), Some(&[152, 153][..]));
        assert_eq!(rowchunk_iter.next(), None);
    }

    #[test]
    fn test_roi_reverse_iterator() {
        const STRIDE: usize = 10;
        const ORIG_W: usize = 10;
        const ORIG_H: usize = 10;
        let mut image_data = [0u8; STRIDE * ORIG_H];

        // fill with useful pattern
        for row in 0..ORIG_H {
            for col in 0..ORIG_W {
                image_data[row * STRIDE + col] = (row * 10_usize + col) as u8;
            }
        }

        // generate an ROI
        let width = 2;
        let height = 4;
        let (row, col) = (2, 2);

        {
            // create image of this ROI
            let im = RoiIm {
                width,
                height,
                stride: STRIDE,
                buf: &image_data[(row * STRIDE + col)..],
            };

            // test length of backwards iterator
            {
                let mut rowchunk_iter = im.rowchunks_exact();
                assert!(rowchunk_iter.next_back().is_some());
                assert!(rowchunk_iter.next_back().is_some());
                assert!(rowchunk_iter.next_back().is_some());
                assert!(rowchunk_iter.next_back().is_some());
                assert!(rowchunk_iter.next_back().is_none());
            }

            // test interleaved forward and backward iteration
            {
                let mut rowchunk_iter = im.rowchunks_exact();
                let row5 = rowchunk_iter.next_back();
                assert_eq!(row5, Some(&[52, 53][..]));
                let row2 = rowchunk_iter.next();
                assert_eq!(row2, Some(&[22, 23][..]));
                let row4 = rowchunk_iter.next_back();
                assert_eq!(row4, Some(&[42, 43][..]));
                let row3 = rowchunk_iter.next();
                assert_eq!(row3, Some(&[32, 33][..]));
                assert_eq!(rowchunk_iter.next_back(), None);
            }
        }
    }
}