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
#![cfg_attr(not(feature = "std"), no_std)]

#[cfg(not(feature = "std"))]
extern crate core as std;

use machine_vision_formats::*;

pub trait ImageStride<F>: ImageData<F> + Stride {
    fn rowchunks_exact(&self) -> RowChunksExact<'_>;
}

impl<S, F> ImageStride<F> for S
where
    S: ImageData<F> + Stride,
    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.min(max_len)];

        RowChunksExact {
            buf,
            stride,
            valid_stride,
        }
    }
}

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

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

    fn next(&mut self) -> Option<Self::Item> {
        if self.buf.len() >= self.valid_stride {
            let mut data: &'a [u8] = &[];
            std::mem::swap(&mut self.buf, &mut data);
            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])
            }
        } else {
            None
        }
    }
}

pub trait ImageStrideMut<F>: ImageMutData<F> + Stride {
    fn rowchunks_exact_mut(&mut self) -> RowChunksExactMut<'_>;
}

impl<S, F> ImageStrideMut<F> for S
where
    S: ImageMutData<F> + Stride,
    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.min(max_len)];
        RowChunksExactMut {
            buf,
            stride,
            valid_stride,
        }
    }
}

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

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

    fn next(&mut self) -> Option<Self::Item> {
        if self.buf.len() >= self.valid_stride {
            let mut data: &'a mut [u8] = &mut [];
            std::mem::swap(&mut self.buf, &mut data);
            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])
            }
        } else {
            None
        }
    }
}

// -----

/// A view of mutable image to have pixel format `FMT`.
pub struct ReinterpretedImageMut<'a, FMT> {
    pub orig: &'a mut [u8],
    pub width: u32,
    pub height: u32,
    pub stride: usize,
    pub fmt: std::marker::PhantomData<FMT>,
}

impl<'a, FMT> ImageData<FMT> for ReinterpretedImageMut<'a, FMT> {
    fn width(&self) -> u32 {
        self.width
    }
    fn height(&self) -> u32 {
        self.height
    }
    fn buffer_ref(&self) -> ImageBufferRef<'_, FMT> {
        ImageBufferRef::new(self.orig)
    }
    #[cfg(feature = "std")]
    fn buffer(self) -> ImageBuffer<FMT> {
        // copy the data
        self.buffer_ref().to_buffer()
    }
}

impl<'a, FMT> ImageMutData<FMT> for ReinterpretedImageMut<'a, FMT> {
    fn buffer_mut_ref(&mut self) -> ImageBufferMutRef<'_, FMT> {
        ImageBufferMutRef::new(self.orig)
    }
}

impl<'a, FMT> Stride for ReinterpretedImageMut<'a, FMT> {
    fn stride(&self) -> usize {
        self.stride
    }
}

#[cfg(test)]
mod test {
    use super::{pixel_format::Mono8, *};

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

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

    impl<'a> ImageData<Mono8> for RoiIm<'a> {
        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> {
            todo!()
        }
    }

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

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

    impl<'a> ImageData<Mono8> for RoiImMut<'a> {
        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> {
            todo!()
        }
    }

    impl<'a> ImageMutData<Mono8> for RoiImMut<'a> {
        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 = vec![0u8; STRIDE * ORIG_H];

        // fill with useful pattern
        for row in 0..ORIG_H as usize {
            for col in 0..ORIG_W as usize {
                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 = vec![0u8; STRIDE * ORIG_H];

        // fill with useful pattern
        for row in 0..ORIG_H as usize {
            for col in 0..ORIG_W as usize {
                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 = vec![0u8; STRIDE * ORIG_H];

        // fill with useful pattern
        for row in 0..ORIG_H as usize {
            for col in 0..ORIG_W as usize {
                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 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 = vec![0u8; STRIDE * ORIG_H];

        // fill with useful pattern
        for row in 0..ORIG_H as usize {
            for col in 0..ORIG_W as usize {
                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 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);
    }
}