bm3d_core 0.9.0

Pure Rust BM3D denoising algorithm core
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
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
use ndarray::{Array2, ArrayView2};
use std::any::TypeId;
#[cfg(target_arch = "aarch64")]
use std::arch::aarch64::*;
#[cfg(target_arch = "x86")]
use std::arch::x86::*;
#[cfg(target_arch = "x86_64")]
use std::arch::x86_64::*;
use std::cmp::Ordering;

use crate::float_trait::Bm3dFloat;

#[derive(Debug, Clone, Copy)]
pub struct PatchMatch<F: Bm3dFloat> {
    pub row: usize,
    pub col: usize,
    pub distance: F,
}

impl<F: Bm3dFloat> PartialEq for PatchMatch<F> {
    fn eq(&self, other: &Self) -> bool {
        self.row == other.row && self.col == other.col && self.distance == other.distance
    }
}

impl<F: Bm3dFloat> Eq for PatchMatch<F> {}

impl<F: Bm3dFloat> Ord for PatchMatch<F> {
    fn cmp(&self, other: &Self) -> Ordering {
        self.distance
            .partial_cmp(&other.distance)
            .unwrap_or(Ordering::Equal)
    }
}

impl<F: Bm3dFloat> PartialOrd for PatchMatch<F> {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        Some(self.cmp(other))
    }
}

/// Compute squared L2 distance between two patches directly from the source image.
///
/// This avoids creating candidate patch views in the hot inner loop.
#[inline(always)]
fn compute_squared_distance_at<F: Bm3dFloat>(
    image: ArrayView2<F>,
    ref_r: usize,
    ref_c: usize,
    cand_r: usize,
    cand_c: usize,
    ph: usize,
    pw: usize,
    threshold: F,
) -> F {
    let mut sum_sq = F::zero();
    for dr in 0..ph {
        let ref_row = image.row(ref_r + dr);
        let cand_row = image.row(cand_r + dr);
        for dc in 0..pw {
            let diff = ref_row[ref_c + dc] - cand_row[cand_c + dc];
            sum_sq += diff * diff;
        }
        if sum_sq >= threshold {
            return sum_sq;
        }
    }
    sum_sq
}

#[inline(always)]
fn compute_squared_distance_at_strided<F: Bm3dFloat>(
    image_data: &[F],
    image_cols: usize,
    ref_r: usize,
    ref_c: usize,
    cand_r: usize,
    cand_c: usize,
    ph: usize,
    pw: usize,
    threshold: F,
) -> F {
    let mut sum_sq = F::zero();
    for dr in 0..ph {
        let ref_base = (ref_r + dr) * image_cols + ref_c;
        let cand_base = (cand_r + dr) * image_cols + cand_c;
        for dc in 0..pw {
            let diff = image_data[ref_base + dc] - image_data[cand_base + dc];
            sum_sq += diff * diff;
        }
        if sum_sq >= threshold {
            return sum_sq;
        }
    }
    sum_sq
}

#[inline(always)]
fn compute_squared_distance_at_strided_8x8_scalar<F: Bm3dFloat>(
    image_data: &[F],
    image_cols: usize,
    ref_r: usize,
    ref_c: usize,
    cand_r: usize,
    cand_c: usize,
    threshold: F,
) -> F {
    let mut sum_sq = F::zero();
    for dr in 0..8 {
        let ref_base = (ref_r + dr) * image_cols + ref_c;
        let cand_base = (cand_r + dr) * image_cols + cand_c;

        let d0 = image_data[ref_base] - image_data[cand_base];
        let d1 = image_data[ref_base + 1] - image_data[cand_base + 1];
        let d2 = image_data[ref_base + 2] - image_data[cand_base + 2];
        let d3 = image_data[ref_base + 3] - image_data[cand_base + 3];
        let d4 = image_data[ref_base + 4] - image_data[cand_base + 4];
        let d5 = image_data[ref_base + 5] - image_data[cand_base + 5];
        let d6 = image_data[ref_base + 6] - image_data[cand_base + 6];
        let d7 = image_data[ref_base + 7] - image_data[cand_base + 7];

        sum_sq += d0 * d0;
        sum_sq += d1 * d1;
        sum_sq += d2 * d2;
        sum_sq += d3 * d3;
        sum_sq += d4 * d4;
        sum_sq += d5 * d5;
        sum_sq += d6 * d6;
        sum_sq += d7 * d7;

        if sum_sq >= threshold {
            return sum_sq;
        }
    }
    sum_sq
}

#[inline(always)]
fn compute_squared_distance_at_strided_8x8_f32_dispatch(
    image_data: &[f32],
    image_cols: usize,
    ref_r: usize,
    ref_c: usize,
    cand_r: usize,
    cand_c: usize,
    threshold: f32,
) -> f32 {
    #[cfg(target_arch = "x86_64")]
    {
        if std::arch::is_x86_feature_detected!("avx2") {
            // SAFETY: Guarded by runtime feature check.
            unsafe {
                compute_squared_distance_at_strided_8x8_f32_avx2(
                    image_data, image_cols, ref_r, ref_c, cand_r, cand_c, threshold,
                )
            }
        } else {
            // SAFETY: SSE2 is guaranteed on x86_64.
            unsafe {
                compute_squared_distance_at_strided_8x8_f32_sse2(
                    image_data, image_cols, ref_r, ref_c, cand_r, cand_c, threshold,
                )
            }
        }
    }

    #[cfg(target_arch = "x86")]
    {
        if std::arch::is_x86_feature_detected!("avx2") {
            // SAFETY: Guarded by runtime feature check.
            unsafe {
                compute_squared_distance_at_strided_8x8_f32_avx2(
                    image_data, image_cols, ref_r, ref_c, cand_r, cand_c, threshold,
                )
            }
        } else if std::arch::is_x86_feature_detected!("sse2") {
            // SAFETY: Guarded by runtime feature check.
            unsafe {
                compute_squared_distance_at_strided_8x8_f32_sse2(
                    image_data, image_cols, ref_r, ref_c, cand_r, cand_c, threshold,
                )
            }
        } else {
            compute_squared_distance_at_strided_8x8_scalar(
                image_data, image_cols, ref_r, ref_c, cand_r, cand_c, threshold,
            )
        }
    }

    #[cfg(target_arch = "aarch64")]
    {
        // SAFETY: NEON is baseline on aarch64.
        unsafe {
            compute_squared_distance_at_strided_8x8_f32_neon(
                image_data, image_cols, ref_r, ref_c, cand_r, cand_c, threshold,
            )
        }
    }

    #[cfg(not(any(target_arch = "x86_64", target_arch = "x86", target_arch = "aarch64")))]
    {
        compute_squared_distance_at_strided_8x8_scalar(
            image_data, image_cols, ref_r, ref_c, cand_r, cand_c, threshold,
        )
    }
}

#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
#[target_feature(enable = "sse2")]
unsafe fn compute_squared_distance_at_strided_8x8_f32_sse2(
    image_data: &[f32],
    image_cols: usize,
    ref_r: usize,
    ref_c: usize,
    cand_r: usize,
    cand_c: usize,
    threshold: f32,
) -> f32 {
    let mut sum_sq = 0.0f32;
    for dr in 0..8 {
        let ref_base = (ref_r + dr) * image_cols + ref_c;
        let cand_base = (cand_r + dr) * image_cols + cand_c;
        let ref_ptr = image_data.as_ptr().add(ref_base);
        let cand_ptr = image_data.as_ptr().add(cand_base);

        let ref_lo = _mm_loadu_ps(ref_ptr);
        let cand_lo = _mm_loadu_ps(cand_ptr);
        let diff_lo = _mm_sub_ps(ref_lo, cand_lo);
        let sq_lo = _mm_mul_ps(diff_lo, diff_lo);

        let ref_hi = _mm_loadu_ps(ref_ptr.add(4));
        let cand_hi = _mm_loadu_ps(cand_ptr.add(4));
        let diff_hi = _mm_sub_ps(ref_hi, cand_hi);
        let sq_hi = _mm_mul_ps(diff_hi, diff_hi);

        let mut lanes_lo = [0.0f32; 4];
        let mut lanes_hi = [0.0f32; 4];
        _mm_storeu_ps(lanes_lo.as_mut_ptr(), sq_lo);
        _mm_storeu_ps(lanes_hi.as_mut_ptr(), sq_hi);

        sum_sq += lanes_lo[0]
            + lanes_lo[1]
            + lanes_lo[2]
            + lanes_lo[3]
            + lanes_hi[0]
            + lanes_hi[1]
            + lanes_hi[2]
            + lanes_hi[3];
        if sum_sq >= threshold {
            return sum_sq;
        }
    }
    sum_sq
}

#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
#[target_feature(enable = "avx2")]
unsafe fn compute_squared_distance_at_strided_8x8_f32_avx2(
    image_data: &[f32],
    image_cols: usize,
    ref_r: usize,
    ref_c: usize,
    cand_r: usize,
    cand_c: usize,
    threshold: f32,
) -> f32 {
    let mut sum_sq = 0.0f32;
    for dr in 0..8 {
        let ref_base = (ref_r + dr) * image_cols + ref_c;
        let cand_base = (cand_r + dr) * image_cols + cand_c;
        let ref_ptr = image_data.as_ptr().add(ref_base);
        let cand_ptr = image_data.as_ptr().add(cand_base);

        let ref_vec = _mm256_loadu_ps(ref_ptr);
        let cand_vec = _mm256_loadu_ps(cand_ptr);
        let diff = _mm256_sub_ps(ref_vec, cand_vec);
        let sq = _mm256_mul_ps(diff, diff);

        let mut lanes = [0.0f32; 8];
        _mm256_storeu_ps(lanes.as_mut_ptr(), sq);
        sum_sq +=
            lanes[0] + lanes[1] + lanes[2] + lanes[3] + lanes[4] + lanes[5] + lanes[6] + lanes[7];
        if sum_sq >= threshold {
            return sum_sq;
        }
    }
    sum_sq
}

#[cfg(target_arch = "aarch64")]
unsafe fn compute_squared_distance_at_strided_8x8_f32_neon(
    image_data: &[f32],
    image_cols: usize,
    ref_r: usize,
    ref_c: usize,
    cand_r: usize,
    cand_c: usize,
    threshold: f32,
) -> f32 {
    let mut sum_sq = 0.0f32;
    for dr in 0..8 {
        let ref_base = (ref_r + dr) * image_cols + ref_c;
        let cand_base = (cand_r + dr) * image_cols + cand_c;
        let ref_ptr = image_data.as_ptr().add(ref_base);
        let cand_ptr = image_data.as_ptr().add(cand_base);

        let ref_lo = vld1q_f32(ref_ptr);
        let cand_lo = vld1q_f32(cand_ptr);
        let diff_lo = vsubq_f32(ref_lo, cand_lo);
        let sq_lo = vmulq_f32(diff_lo, diff_lo);

        let ref_hi = vld1q_f32(ref_ptr.add(4));
        let cand_hi = vld1q_f32(cand_ptr.add(4));
        let diff_hi = vsubq_f32(ref_hi, cand_hi);
        let sq_hi = vmulq_f32(diff_hi, diff_hi);

        sum_sq += vaddvq_f32(sq_lo) + vaddvq_f32(sq_hi);
        if sum_sq >= threshold {
            return sum_sq;
        }
    }
    sum_sq
}

#[inline(always)]
fn compute_squared_distance_at_strided_8x8<F: Bm3dFloat>(
    image_data: &[F],
    image_cols: usize,
    ref_r: usize,
    ref_c: usize,
    cand_r: usize,
    cand_c: usize,
    threshold: F,
) -> F {
    if TypeId::of::<F>() == TypeId::of::<f32>() {
        // SAFETY: TypeId check guarantees F is f32 in this branch.
        let data_f32 = unsafe {
            std::slice::from_raw_parts(image_data.as_ptr() as *const f32, image_data.len())
        };
        let threshold_f32 = threshold.to_f32().unwrap_or(f32::MAX);
        let sum = compute_squared_distance_at_strided_8x8_f32_dispatch(
            data_f32,
            image_cols,
            ref_r,
            ref_c,
            cand_r,
            cand_c,
            threshold_f32,
        );
        return F::from_f64_c(sum as f64);
    }
    compute_squared_distance_at_strided_8x8_scalar(
        image_data, image_cols, ref_r, ref_c, cand_r, cand_c, threshold,
    )
}

/// Compute Integral Image (sum only).
///
/// Returns an array with shape `(h + 1, w + 1)`.
pub fn compute_integral_sum_image<F: Bm3dFloat>(image: ArrayView2<F>) -> Array2<F> {
    let (h, w) = image.dim();
    let mut sum_img = Array2::<F>::zeros((h + 1, w + 1));

    for r in 0..h {
        let mut row_sum = F::zero();
        for c in 0..w {
            let val = image[[r, c]];
            row_sum += val;
            sum_img[[r + 1, c + 1]] = sum_img[[r, c + 1]] + row_sum;
        }
    }
    sum_img
}

/// Compute Integral Images (Sum and Squared Sum).
///
/// Integral Image I(x, y) = sum(i(x', y')) for x'<=x, y'<=y.
/// This allows O(1) computation of sum of pixels in any rectangular region.
/// We use this for fast pre-screening in Block Matching:
/// 1. Compute Mean Difference Bound: (sum1 - sum2)^2 / N
/// 2. Compute Norm Difference Bound: (norm1 - norm2)^2
///
/// If either bound exceeds threshold, we skip strict distance calculation.
/// Returns (Sum, SqSum). Indexing: [row+1, col+1].
pub fn compute_integral_images<F: Bm3dFloat>(image: ArrayView2<F>) -> (Array2<F>, Array2<F>) {
    let (h, w) = image.dim();
    let sum_img = compute_integral_sum_image(image);
    let mut sq_sum_img = Array2::<F>::zeros((h + 1, w + 1));

    for r in 0..h {
        let mut row_sq_sum = F::zero();
        for c in 0..w {
            let val = image[[r, c]];
            row_sq_sum += val * val;

            sq_sum_img[[r + 1, c + 1]] = sq_sum_img[[r, c + 1]] + row_sq_sum;
        }
    }
    (sum_img, sq_sum_img)
}

#[inline(always)]
fn get_patch_sum<F: Bm3dFloat>(sum_img: &Array2<F>, r: usize, c: usize, h: usize, w: usize) -> F {
    let r1 = r;
    let c1 = c;
    let r2 = r + h;
    let c2 = c + w;

    sum_img[[r2, c2]] - sum_img[[r1, c2]] - sum_img[[r2, c1]] + sum_img[[r1, c1]]
}

#[inline(always)]
fn get_patch_sum_strided<F: Bm3dFloat>(
    sum_data: &[F],
    sum_stride: usize,
    r: usize,
    c: usize,
    h: usize,
    w: usize,
) -> F {
    let r1 = r;
    let c1 = c;
    let r2 = r + h;
    let c2 = c + w;
    sum_data[r2 * sum_stride + c2] - sum_data[r1 * sum_stride + c2] - sum_data[r2 * sum_stride + c1]
        + sum_data[r1 * sum_stride + c1]
}

/// Find similar patches within a search window using Integral Image pre-screening (sum bound).
pub fn find_similar_patches_in_place_sum<F: Bm3dFloat>(
    image: ArrayView2<F>,
    integral_sum: &Array2<F>,
    ref_pos: (usize, usize),
    patch_size: (usize, usize),
    search_window: (usize, usize),
    max_matches: usize,
    step: usize,
    out_matches: &mut Vec<PatchMatch<F>>,
) {
    let (ref_r, ref_c) = ref_pos;
    let (ph, pw) = patch_size;
    let (h, w) = image.dim();

    let search_r_start = ref_r.saturating_sub(search_window.0 / 2);
    let search_r_end = (ref_r + search_window.0 / 2).min(h - ph);
    let search_c_start = ref_c.saturating_sub(search_window.1 / 2);
    let search_c_end = (ref_c + search_window.1 / 2).min(w - pw);

    out_matches.clear();
    out_matches.push(PatchMatch {
        row: ref_r,
        col: ref_c,
        distance: F::zero(),
    });

    let mut threshold = if max_matches > 1 {
        F::max_value()
    } else {
        F::zero()
    };

    let inv_n = F::one() / F::usize_as(ph * pw);
    if let (Some(image_data), Some(sum_data)) = (
        image.as_slice_memory_order(),
        integral_sum.as_slice_memory_order(),
    ) {
        let sum_stride = integral_sum.dim().1;
        let image_cols = w;
        let ref_sum = get_patch_sum_strided(sum_data, sum_stride, ref_r, ref_c, ph, pw);
        for r in (search_r_start..=search_r_end).step_by(step) {
            for c in (search_c_start..=search_c_end).step_by(step) {
                if r == ref_r && c == ref_c {
                    continue;
                }

                let cand_sum = get_patch_sum_strided(sum_data, sum_stride, r, c, ph, pw);
                let check_threshold = threshold;

                let diff_sum = cand_sum - ref_sum;
                let lb_mean = (diff_sum * diff_sum) * inv_n;
                if lb_mean >= check_threshold {
                    continue;
                }

                let dist = if ph == 8 && pw == 8 {
                    compute_squared_distance_at_strided_8x8(
                        image_data, image_cols, ref_r, ref_c, r, c, threshold,
                    )
                } else {
                    compute_squared_distance_at_strided(
                        image_data, image_cols, ref_r, ref_c, r, c, ph, pw, threshold,
                    )
                };

                if dist < threshold {
                    if out_matches.len() < max_matches {
                        out_matches.push(PatchMatch {
                            row: r,
                            col: c,
                            distance: dist,
                        });
                        if out_matches.len() == max_matches {
                            let mut worst_idx = 0usize;
                            let mut worst_dist = out_matches[0].distance;
                            for (idx, m) in out_matches.iter().enumerate().skip(1) {
                                if m.distance > worst_dist {
                                    worst_idx = idx;
                                    worst_dist = m.distance;
                                }
                            }
                            threshold = out_matches[worst_idx].distance;
                        }
                    } else {
                        let mut worst_idx = 0usize;
                        let mut worst_dist = out_matches[0].distance;
                        for (idx, m) in out_matches.iter().enumerate().skip(1) {
                            if m.distance > worst_dist {
                                worst_idx = idx;
                                worst_dist = m.distance;
                            }
                        }
                        out_matches[worst_idx] = PatchMatch {
                            row: r,
                            col: c,
                            distance: dist,
                        };
                        let mut next_worst = out_matches[0].distance;
                        for m in out_matches.iter().skip(1) {
                            if m.distance > next_worst {
                                next_worst = m.distance;
                            }
                        }
                        threshold = next_worst;
                    }
                }
            }
        }
    } else {
        // Fallback for non-contiguous views.
        let ref_sum = get_patch_sum(integral_sum, ref_r, ref_c, ph, pw);
        for r in (search_r_start..=search_r_end).step_by(step) {
            for c in (search_c_start..=search_c_end).step_by(step) {
                if r == ref_r && c == ref_c {
                    continue;
                }

                let cand_sum = get_patch_sum(integral_sum, r, c, ph, pw);
                let check_threshold = threshold;

                let diff_sum = cand_sum - ref_sum;
                let lb_mean = (diff_sum * diff_sum) * inv_n;
                if lb_mean >= check_threshold {
                    continue;
                }

                let dist =
                    compute_squared_distance_at(image, ref_r, ref_c, r, c, ph, pw, threshold);

                if dist < threshold {
                    if out_matches.len() < max_matches {
                        out_matches.push(PatchMatch {
                            row: r,
                            col: c,
                            distance: dist,
                        });
                        if out_matches.len() == max_matches {
                            let mut worst_idx = 0usize;
                            let mut worst_dist = out_matches[0].distance;
                            for (idx, m) in out_matches.iter().enumerate().skip(1) {
                                if m.distance > worst_dist {
                                    worst_idx = idx;
                                    worst_dist = m.distance;
                                }
                            }
                            threshold = out_matches[worst_idx].distance;
                        }
                    } else {
                        let mut worst_idx = 0usize;
                        let mut worst_dist = out_matches[0].distance;
                        for (idx, m) in out_matches.iter().enumerate().skip(1) {
                            if m.distance > worst_dist {
                                worst_idx = idx;
                                worst_dist = m.distance;
                            }
                        }
                        out_matches[worst_idx] = PatchMatch {
                            row: r,
                            col: c,
                            distance: dist,
                        };
                        let mut next_worst = out_matches[0].distance;
                        for m in out_matches.iter().skip(1) {
                            if m.distance > next_worst {
                                next_worst = m.distance;
                            }
                        }
                        threshold = next_worst;
                    }
                }
            }
        }
    }

    out_matches.sort_unstable_by(|a, b| {
        a.distance
            .partial_cmp(&b.distance)
            .unwrap_or(Ordering::Equal)
    });
}

/// Backward-compatible in-place API.
///
/// `integral_sq_sum` is accepted for compatibility but no longer used.
pub fn find_similar_patches_in_place<F: Bm3dFloat>(
    image: ArrayView2<F>,
    integral_sum: &Array2<F>,
    _integral_sq_sum: &Array2<F>,
    ref_pos: (usize, usize),
    patch_size: (usize, usize),
    search_window: (usize, usize),
    max_matches: usize,
    step: usize,
    out_matches: &mut Vec<PatchMatch<F>>,
) {
    find_similar_patches_in_place_sum(
        image,
        integral_sum,
        ref_pos,
        patch_size,
        search_window,
        max_matches,
        step,
        out_matches,
    );
}

/// Find similar patches within a search window using Integral Image Pre-Screening.
pub fn find_similar_patches<F: Bm3dFloat>(
    image: ArrayView2<F>,
    integral_sum: &Array2<F>,
    integral_sq_sum: &Array2<F>,
    ref_pos: (usize, usize),
    patch_size: (usize, usize),
    search_window: (usize, usize),
    max_matches: usize,
    step: usize,
) -> Vec<PatchMatch<F>> {
    let mut matches = Vec::with_capacity(max_matches.max(1));
    find_similar_patches_in_place(
        image,
        integral_sum,
        integral_sq_sum,
        ref_pos,
        patch_size,
        search_window,
        max_matches,
        step,
        &mut matches,
    );
    matches
}

#[cfg(test)]
mod tests {
    use super::*;
    use ndarray::Array2;
    use std::collections::BinaryHeap;

    // Helper: Simple Linear Congruential Generator for deterministic "random" test data
    // Copied from transforms.rs tests to maintain consistency
    struct SimpleLcg {
        state: u64,
    }

    impl SimpleLcg {
        fn new(seed: u64) -> Self {
            Self { state: seed }
        }

        fn next_u64(&mut self) -> u64 {
            // LCG parameters from Numerical Recipes
            self.state = self.state.wrapping_mul(6364136223846793005).wrapping_add(1);
            self.state
        }

        fn next_f32(&mut self) -> f32 {
            // Generate f32 in range [0.0, 1.0)
            let u = self.next_u64();
            (u >> 40) as f32 / (1u64 << 24) as f32
        }

        fn next_f64(&mut self) -> f64 {
            // Generate f64 in range [0.0, 1.0)
            let u = self.next_u64();
            (u >> 11) as f64 / (1u64 << 53) as f64
        }
    }

    // Helper: Generate deterministic "random" matrix
    fn random_matrix_f32(rows: usize, cols: usize, seed: u64) -> Array2<f32> {
        let mut rng = SimpleLcg::new(seed);
        Array2::from_shape_fn((rows, cols), |_| rng.next_f32())
    }

    fn random_matrix_f64(rows: usize, cols: usize, seed: u64) -> Array2<f64> {
        let mut rng = SimpleLcg::new(seed);
        Array2::from_shape_fn((rows, cols), |_| rng.next_f64())
    }

    // ==================== PatchMatch Struct Tests ====================

    #[test]
    fn test_patch_match_ordering_by_distance() {
        // Verify Ord impl sorts by distance ascending (for min-heap behavior with BinaryHeap)
        let p1: PatchMatch<f32> = PatchMatch {
            row: 0,
            col: 0,
            distance: 1.0,
        };
        let p2: PatchMatch<f32> = PatchMatch {
            row: 1,
            col: 1,
            distance: 2.0,
        };
        let p3: PatchMatch<f32> = PatchMatch {
            row: 2,
            col: 2,
            distance: 0.5,
        };

        // Ord comparison: smaller distance should be Less
        assert!(p3 < p1, "0.5 should be less than 1.0");
        assert!(p1 < p2, "1.0 should be less than 2.0");
        assert!(p3 < p2, "0.5 should be less than 2.0");
    }

    #[test]
    fn test_patch_match_heap_behavior() {
        // BinaryHeap is a max-heap, so largest distance pops first
        let mut heap: BinaryHeap<PatchMatch<f32>> = BinaryHeap::new();
        heap.push(PatchMatch {
            row: 0,
            col: 0,
            distance: 1.0,
        });
        heap.push(PatchMatch {
            row: 1,
            col: 1,
            distance: 3.0,
        });
        heap.push(PatchMatch {
            row: 2,
            col: 2,
            distance: 2.0,
        });
        heap.push(PatchMatch {
            row: 3,
            col: 3,
            distance: 0.5,
        });

        // Pop order should be: 3.0, 2.0, 1.0, 0.5 (max-heap)
        let p1 = heap.pop().unwrap();
        assert_eq!(p1.distance, 3.0, "First pop should be largest distance");

        let p2 = heap.pop().unwrap();
        assert_eq!(p2.distance, 2.0, "Second pop should be second largest");

        let p3 = heap.pop().unwrap();
        assert_eq!(p3.distance, 1.0, "Third pop should be 1.0");

        let p4 = heap.pop().unwrap();
        assert_eq!(p4.distance, 0.5, "Fourth pop should be smallest");
    }

    #[test]
    fn test_patch_match_equal_distance() {
        // When distances are equal, Ord should return Equal
        let p1: PatchMatch<f32> = PatchMatch {
            row: 0,
            col: 0,
            distance: 1.0,
        };
        let p2: PatchMatch<f32> = PatchMatch {
            row: 5,
            col: 5,
            distance: 1.0,
        };

        assert_eq!(
            p1.cmp(&p2),
            Ordering::Equal,
            "Equal distances should compare as Equal"
        );
        assert_eq!(p1.partial_cmp(&p2), Some(Ordering::Equal));
    }

    #[test]
    fn test_patch_match_heap_with_equal_distances() {
        // Verify heap handles equal distances without panic
        let mut heap: BinaryHeap<PatchMatch<f32>> = BinaryHeap::new();
        heap.push(PatchMatch {
            row: 0,
            col: 0,
            distance: 1.0,
        });
        heap.push(PatchMatch {
            row: 1,
            col: 1,
            distance: 1.0,
        });
        heap.push(PatchMatch {
            row: 2,
            col: 2,
            distance: 1.0,
        });

        assert_eq!(heap.len(), 3);

        // All should pop with distance 1.0
        for _ in 0..3 {
            let p = heap.pop().unwrap();
            assert_eq!(p.distance, 1.0);
        }
    }

    // ==================== Integral Image Tests ====================

    #[test]
    fn test_integral_image_simple() {
        // Simple 2x2 matrix with known values
        // [1, 2]
        // [3, 4]
        let mut input = Array2::<f32>::zeros((2, 2));
        input[[0, 0]] = 1.0;
        input[[0, 1]] = 2.0;
        input[[1, 0]] = 3.0;
        input[[1, 1]] = 4.0;

        let (sum_img, sq_sum_img) = compute_integral_images(input.view());

        // Sum integral image (3x3 with zero padding):
        // [0, 0, 0]
        // [0, 1, 3]     (1, 1+2=3)
        // [0, 4, 10]    (1+3=4, 1+2+3+4=10)
        assert_eq!(sum_img.dim(), (3, 3));
        assert_eq!(sum_img[[0, 0]], 0.0);
        assert_eq!(sum_img[[0, 1]], 0.0);
        assert_eq!(sum_img[[0, 2]], 0.0);
        assert_eq!(sum_img[[1, 0]], 0.0);
        assert_eq!(sum_img[[1, 1]], 1.0);
        assert_eq!(sum_img[[1, 2]], 3.0); // 1 + 2
        assert_eq!(sum_img[[2, 0]], 0.0);
        assert_eq!(sum_img[[2, 1]], 4.0); // 1 + 3
        assert_eq!(sum_img[[2, 2]], 10.0); // 1 + 2 + 3 + 4

        // Squared sum integral image:
        // [0, 0, 0]
        // [0, 1, 5]     (1, 1+4=5)
        // [0, 10, 30]   (1+9=10, 1+4+9+16=30)
        assert_eq!(sq_sum_img[[1, 1]], 1.0);
        assert_eq!(sq_sum_img[[1, 2]], 5.0); // 1 + 4
        assert_eq!(sq_sum_img[[2, 1]], 10.0); // 1 + 9
        assert_eq!(sq_sum_img[[2, 2]], 30.0); // 1 + 4 + 9 + 16
    }

    #[test]
    fn test_integral_image_simple_f64() {
        let mut input = Array2::<f64>::zeros((2, 2));
        input[[0, 0]] = 1.0;
        input[[0, 1]] = 2.0;
        input[[1, 0]] = 3.0;
        input[[1, 1]] = 4.0;

        let (sum_img, sq_sum_img) = compute_integral_images(input.view());

        assert_eq!(sum_img[[2, 2]], 10.0);
        assert_eq!(sq_sum_img[[2, 2]], 30.0);
    }

    #[test]
    fn test_integral_image_zeros() {
        let input = Array2::<f32>::zeros((4, 4));
        let (sum_img, sq_sum_img) = compute_integral_images(input.view());

        for val in sum_img.iter() {
            assert_eq!(*val, 0.0, "Integral of zeros should be all zeros");
        }
        for val in sq_sum_img.iter() {
            assert_eq!(*val, 0.0, "Squared integral of zeros should be all zeros");
        }
    }

    #[test]
    fn test_integral_image_ones() {
        let input = Array2::<f32>::ones((4, 4));
        let (sum_img, _) = compute_integral_images(input.view());

        // For all-ones, integral at (i+1, j+1) should equal (i+1) * (j+1)
        for r in 0..4 {
            for c in 0..4 {
                let expected = ((r + 1) * (c + 1)) as f32;
                assert_eq!(
                    sum_img[[r + 1, c + 1]],
                    expected,
                    "Integral of ones at [{},{}] should be {}",
                    r + 1,
                    c + 1,
                    expected
                );
            }
        }
    }

    #[test]
    fn test_integral_image_single_element() {
        let mut input = Array2::<f32>::zeros((1, 1));
        input[[0, 0]] = 5.0;

        let (sum_img, sq_sum_img) = compute_integral_images(input.view());

        assert_eq!(sum_img.dim(), (2, 2));
        assert_eq!(sum_img[[0, 0]], 0.0);
        assert_eq!(sum_img[[0, 1]], 0.0);
        assert_eq!(sum_img[[1, 0]], 0.0);
        assert_eq!(sum_img[[1, 1]], 5.0);

        assert_eq!(sq_sum_img[[1, 1]], 25.0);
    }

    #[test]
    fn test_integral_image_rectangular() {
        // Non-square 2x3 matrix
        // [1, 2, 3]
        // [4, 5, 6]
        let mut input = Array2::<f32>::zeros((2, 3));
        for r in 0..2 {
            for c in 0..3 {
                input[[r, c]] = (r * 3 + c + 1) as f32;
            }
        }

        let (sum_img, _) = compute_integral_images(input.view());

        assert_eq!(sum_img.dim(), (3, 4));
        // Full sum should be 1+2+3+4+5+6 = 21
        assert_eq!(sum_img[[2, 3]], 21.0);
        // First row sum: 1+2+3 = 6
        assert_eq!(sum_img[[1, 3]], 6.0);
        // First column sum: 1+4 = 5
        assert_eq!(sum_img[[2, 1]], 5.0);
    }

    #[test]
    fn test_integral_image_large_values() {
        // Test numerical stability with large values ~1e6
        let mut input = Array2::<f32>::zeros((4, 4));
        for r in 0..4 {
            for c in 0..4 {
                input[[r, c]] = 1e6;
            }
        }

        let (sum_img, sq_sum_img) = compute_integral_images(input.view());

        // Total sum should be 16 * 1e6 = 1.6e7
        let expected_sum = 16.0 * 1e6;
        assert!(
            (sum_img[[4, 4]] - expected_sum).abs() < 1.0,
            "Large value sum should be correct: got {}, expected {}",
            sum_img[[4, 4]],
            expected_sum
        );

        // Total squared sum should be 16 * (1e6)^2 = 1.6e13
        let expected_sq_sum = 16.0 * 1e12;
        let rel_err = (sq_sum_img[[4, 4]] - expected_sq_sum).abs() / expected_sq_sum;
        assert!(
            rel_err < 1e-5,
            "Large value squared sum should be correct: got {}, expected {}, rel_err={}",
            sq_sum_img[[4, 4]],
            expected_sq_sum,
            rel_err
        );
    }

    // ==================== find_similar_patches Tests ====================

    #[test]
    fn test_find_similar_identical_image() {
        // Uniform image (all same value) - all patches equally similar
        let image = Array2::<f32>::from_elem((16, 16), 0.5);
        let (sum_img, sq_sum_img) = compute_integral_images(image.view());

        let matches = find_similar_patches(
            image.view(),
            &sum_img,
            &sq_sum_img,
            (4, 4), // ref_pos
            (4, 4), // patch_size
            (8, 8), // search_window
            5,      // max_matches
            1,      // step
        );

        // All matches should have distance ≈ 0
        for m in &matches {
            assert!(
                m.distance < 1e-5,
                "Uniform image should have all distances ≈ 0, got {}",
                m.distance
            );
        }
    }

    #[test]
    fn test_find_similar_self_match() {
        // Reference patch should always be included with distance ≈ 0
        let image = random_matrix_f32(16, 16, 12345);
        let (sum_img, sq_sum_img) = compute_integral_images(image.view());

        let matches = find_similar_patches(
            image.view(),
            &sum_img,
            &sq_sum_img,
            (4, 4), // ref_pos
            (4, 4), // patch_size
            (8, 8), // search_window
            10,     // max_matches
            1,      // step
        );

        // Should contain self-match at (4, 4) with distance 0
        let self_match = matches.iter().find(|m| m.row == 4 && m.col == 4);
        assert!(self_match.is_some(), "Self-match should be in results");
        assert_eq!(
            self_match.unwrap().distance,
            0.0,
            "Self-match distance should be 0"
        );

        // Self-match should be first (smallest distance)
        assert_eq!(matches[0].row, 4);
        assert_eq!(matches[0].col, 4);
        assert_eq!(matches[0].distance, 0.0);
    }

    #[test]
    fn test_find_similar_f64() {
        // Test with f64 precision
        let image = random_matrix_f64(16, 16, 12345);
        let (sum_img, sq_sum_img) = compute_integral_images(image.view());

        let matches = find_similar_patches(
            image.view(),
            &sum_img,
            &sq_sum_img,
            (4, 4),
            (4, 4),
            (8, 8),
            10,
            1,
        );

        // Self-match should be at distance 0
        assert_eq!(matches[0].row, 4);
        assert_eq!(matches[0].col, 4);
        assert_eq!(matches[0].distance, 0.0);
    }

    #[test]
    fn test_find_similar_distinct_regions() {
        // Image with two distinct constant regions
        // Left half = 0.0, Right half = 1.0
        let mut image = Array2::<f32>::zeros((16, 16));
        for r in 0..16 {
            for c in 8..16 {
                image[[r, c]] = 1.0;
            }
        }
        let (sum_img, sq_sum_img) = compute_integral_images(image.view());

        // Reference patch in left region (all zeros)
        let matches = find_similar_patches(
            image.view(),
            &sum_img,
            &sq_sum_img,
            (4, 2),   // ref_pos (in left region)
            (4, 4),   // patch_size
            (16, 16), // large search window
            5,        // max_matches
            1,        // step
        );

        // All best matches should be in left region (columns 0-4 for 4-wide patches)
        for m in &matches {
            assert!(
                m.col <= 4,
                "Best matches for left region should be in left region, got col={}",
                m.col
            );
        }
    }

    #[test]
    fn test_find_similar_respects_max_matches() {
        let image = random_matrix_f32(32, 32, 54321);
        let (sum_img, sq_sum_img) = compute_integral_images(image.view());

        for max_matches in [1, 5, 10, 20] {
            let matches = find_similar_patches(
                image.view(),
                &sum_img,
                &sq_sum_img,
                (8, 8),
                (4, 4),
                (16, 16),
                max_matches,
                1,
            );

            assert!(
                matches.len() <= max_matches,
                "Should return at most {} matches, got {}",
                max_matches,
                matches.len()
            );
        }
    }

    #[test]
    fn test_find_similar_search_window() {
        // Large image, small search window - only finds patches within window
        let image = random_matrix_f32(32, 32, 99999);
        let (sum_img, sq_sum_img) = compute_integral_images(image.view());

        let ref_pos = (16, 16);
        let search_window = (8, 8); // ±4 from reference

        let matches = find_similar_patches(
            image.view(),
            &sum_img,
            &sq_sum_img,
            ref_pos,
            (4, 4),
            search_window,
            20,
            1,
        );

        // All matches should be within search window of reference
        for m in &matches {
            let row_dist = (m.row as i32 - ref_pos.0 as i32).abs();
            let col_dist = (m.col as i32 - ref_pos.1 as i32).abs();

            assert!(
                row_dist <= (search_window.0 / 2) as i32,
                "Match row {} outside search window of ref {}",
                m.row,
                ref_pos.0
            );
            assert!(
                col_dist <= (search_window.1 / 2) as i32,
                "Match col {} outside search window of ref {}",
                m.col,
                ref_pos.1
            );
        }
    }

    #[test]
    fn test_find_similar_boundary_patch() {
        // Reference patch at image edge - should not panic
        let image = random_matrix_f32(16, 16, 11111);
        let (sum_img, sq_sum_img) = compute_integral_images(image.view());

        // Top-left corner
        let matches = find_similar_patches(
            image.view(),
            &sum_img,
            &sq_sum_img,
            (0, 0), // corner position
            (4, 4),
            (8, 8),
            5,
            1,
        );
        assert!(
            !matches.is_empty(),
            "Should find matches at top-left corner"
        );

        // Bottom-right corner (need to leave room for patch)
        let matches = find_similar_patches(
            image.view(),
            &sum_img,
            &sq_sum_img,
            (12, 12), // 16-4=12, last valid position for 4x4 patch
            (4, 4),
            (8, 8),
            5,
            1,
        );
        assert!(
            !matches.is_empty(),
            "Should find matches at bottom-right corner"
        );
    }

    #[test]
    fn test_find_similar_results_sorted() {
        // Verify results are sorted by distance (ascending)
        let image = random_matrix_f32(24, 24, 77777);
        let (sum_img, sq_sum_img) = compute_integral_images(image.view());

        let matches = find_similar_patches(
            image.view(),
            &sum_img,
            &sq_sum_img,
            (8, 8),
            (4, 4),
            (12, 12),
            10,
            1,
        );

        for i in 1..matches.len() {
            assert!(
                matches[i].distance >= matches[i - 1].distance,
                "Results should be sorted: {} >= {} at index {}",
                matches[i].distance,
                matches[i - 1].distance,
                i
            );
        }
    }

    #[test]
    fn test_find_similar_with_step() {
        // Verify step parameter affects search
        let image = random_matrix_f32(32, 32, 88888);
        let (sum_img, sq_sum_img) = compute_integral_images(image.view());

        let matches_step1 = find_similar_patches(
            image.view(),
            &sum_img,
            &sq_sum_img,
            (8, 8),
            (4, 4),
            (16, 16),
            50, // Request many matches
            1,  // step=1
        );

        let matches_step2 = find_similar_patches(
            image.view(),
            &sum_img,
            &sq_sum_img,
            (8, 8),
            (4, 4),
            (16, 16),
            50,
            2, // step=2
        );

        // With step=2, we search fewer positions, so typically get fewer or equal matches
        // (assuming enough positions exist)
        assert!(
            matches_step2.len() <= matches_step1.len(),
            "Step=2 should find same or fewer matches than step=1: {} vs {}",
            matches_step2.len(),
            matches_step1.len()
        );
    }

    // ==================== Edge Case Tests ====================

    #[test]
    fn test_find_similar_minimum_image() {
        // Smallest valid image for a 4x4 patch
        let image = random_matrix_f32(4, 4, 22222);
        let (sum_img, sq_sum_img) = compute_integral_images(image.view());

        let matches = find_similar_patches(
            image.view(),
            &sum_img,
            &sq_sum_img,
            (0, 0),
            (4, 4),
            (4, 4),
            5,
            1,
        );

        // Should return at least self-match
        assert!(!matches.is_empty(), "Should find at least self-match");
        assert_eq!(matches[0].row, 0);
        assert_eq!(matches[0].col, 0);
        assert_eq!(matches[0].distance, 0.0);
    }

    #[test]
    fn test_find_similar_patch_equals_image() {
        // Patch size equals image size - only one possible patch (self)
        let image = random_matrix_f32(8, 8, 33333);
        let (sum_img, sq_sum_img) = compute_integral_images(image.view());

        let matches = find_similar_patches(
            image.view(),
            &sum_img,
            &sq_sum_img,
            (0, 0),
            (8, 8), // patch_size equals image
            (8, 8),
            5,
            1,
        );

        // Only self-match possible
        assert_eq!(matches.len(), 1, "Should only find self-match");
        assert_eq!(matches[0].row, 0);
        assert_eq!(matches[0].col, 0);
        assert_eq!(matches[0].distance, 0.0);
    }

    #[test]
    fn test_compute_squared_distance_identical() {
        // Test the internal distance function via find_similar_patches
        // Two identical patches should have distance 0
        let image = Array2::<f32>::from_elem((8, 8), 0.5);
        let (sum_img, sq_sum_img) = compute_integral_images(image.view());

        let matches = find_similar_patches(
            image.view(),
            &sum_img,
            &sq_sum_img,
            (0, 0),
            (4, 4),
            (8, 8),
            10,
            1,
        );

        // All patches identical, all distances should be 0
        for m in &matches {
            assert!(
                m.distance < 1e-10,
                "Identical patches should have distance ~0, got {}",
                m.distance
            );
        }
    }

    #[test]
    fn test_compute_squared_distance_8x8_f32_simd_matches_scalar() {
        let image = random_matrix_f32(24, 24, 44444);
        let image_data = image
            .as_slice_memory_order()
            .expect("random_matrix_f32 should be contiguous");
        let cols = image.dim().1;
        let threshold = f32::MAX;

        for ref_r in (0..=16).step_by(3) {
            for ref_c in (0..=16).step_by(3) {
                for cand_r in (0..=16).step_by(5) {
                    for cand_c in (0..=16).step_by(5) {
                        let scalar = compute_squared_distance_at_strided_8x8_scalar(
                            image_data, cols, ref_r, ref_c, cand_r, cand_c, threshold,
                        );
                        let simd = compute_squared_distance_at_strided_8x8(
                            image_data, cols, ref_r, ref_c, cand_r, cand_c, threshold,
                        );
                        let abs_diff = (simd - scalar).abs();
                        let rel_diff = abs_diff / scalar.max(1.0);
                        assert!(
                            rel_diff < 1e-5,
                            "SIMD drift too large ref=({},{}) cand=({},{}) scalar={} simd={} rel_diff={}",
                            ref_r,
                            ref_c,
                            cand_r,
                            cand_c,
                            scalar,
                            simd,
                            rel_diff
                        );
                    }
                }
            }
        }
    }

    #[test]
    fn test_find_similar_known_distance() {
        // Create image where we can predict exact distances
        // Reference patch at (0,0) with value 0, another patch at (0,4) with value 1
        // Distance = 4*4 * (1-0)^2 = 16
        let mut image = Array2::<f32>::zeros((8, 8));
        for r in 0..4 {
            for c in 4..8 {
                image[[r, c]] = 1.0;
            }
        }
        let (sum_img, sq_sum_img) = compute_integral_images(image.view());

        let matches = find_similar_patches(
            image.view(),
            &sum_img,
            &sq_sum_img,
            (0, 0),
            (4, 4),
            (8, 8),
            5,
            1,
        );

        // Find the match at (0, 4)
        let distant_match = matches.iter().find(|m| m.row == 0 && m.col == 4);
        if let Some(m) = distant_match {
            // Distance should be 16 (4*4 pixels, each diff=1, squared=1)
            assert!(
                (m.distance - 16.0).abs() < 1e-5,
                "Known distance should be 16, got {}",
                m.distance
            );
        }
    }
}