summaryrefslogtreecommitdiff
path: root/math/py-scikit-image/PLIST
blob: d32d2b0b9b69f73f433f972aeabedacd75d0f312 (plain)
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
@comment $NetBSD: PLIST,v 1.3 2019/06/17 15:03:46 adam Exp $
bin/skivi-${PYVERSSUFFIX}
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
${PYSITELIB}/${EGG_INFODIR}/requires.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/skimage/__init__.py
${PYSITELIB}/skimage/__init__.pyc
${PYSITELIB}/skimage/__init__.pyo
${PYSITELIB}/skimage/_build.py
${PYSITELIB}/skimage/_build.pyc
${PYSITELIB}/skimage/_build.pyo
${PYSITELIB}/skimage/_shared/__init__.py
${PYSITELIB}/skimage/_shared/__init__.pyc
${PYSITELIB}/skimage/_shared/__init__.pyo
${PYSITELIB}/skimage/_shared/_geometry.py
${PYSITELIB}/skimage/_shared/_geometry.pyc
${PYSITELIB}/skimage/_shared/_geometry.pyo
${PYSITELIB}/skimage/_shared/_tempfile.py
${PYSITELIB}/skimage/_shared/_tempfile.pyc
${PYSITELIB}/skimage/_shared/_tempfile.pyo
${PYSITELIB}/skimage/_shared/_warnings.py
${PYSITELIB}/skimage/_shared/_warnings.pyc
${PYSITELIB}/skimage/_shared/_warnings.pyo
${PYSITELIB}/skimage/_shared/geometry.so
${PYSITELIB}/skimage/_shared/interpolation.so
${PYSITELIB}/skimage/_shared/setup.py
${PYSITELIB}/skimage/_shared/setup.pyc
${PYSITELIB}/skimage/_shared/setup.pyo
${PYSITELIB}/skimage/_shared/testing.py
${PYSITELIB}/skimage/_shared/testing.pyc
${PYSITELIB}/skimage/_shared/testing.pyo
${PYSITELIB}/skimage/_shared/tests/__init__.py
${PYSITELIB}/skimage/_shared/tests/__init__.pyc
${PYSITELIB}/skimage/_shared/tests/__init__.pyo
${PYSITELIB}/skimage/_shared/tests/test_geometry.py
${PYSITELIB}/skimage/_shared/tests/test_geometry.pyc
${PYSITELIB}/skimage/_shared/tests/test_geometry.pyo
${PYSITELIB}/skimage/_shared/tests/test_interpolation.py
${PYSITELIB}/skimage/_shared/tests/test_interpolation.pyc
${PYSITELIB}/skimage/_shared/tests/test_interpolation.pyo
${PYSITELIB}/skimage/_shared/tests/test_safe_as_int.py
${PYSITELIB}/skimage/_shared/tests/test_safe_as_int.pyc
${PYSITELIB}/skimage/_shared/tests/test_safe_as_int.pyo
${PYSITELIB}/skimage/_shared/tests/test_testing.py
${PYSITELIB}/skimage/_shared/tests/test_testing.pyc
${PYSITELIB}/skimage/_shared/tests/test_testing.pyo
${PYSITELIB}/skimage/_shared/tests/test_utils.py
${PYSITELIB}/skimage/_shared/tests/test_utils.pyc
${PYSITELIB}/skimage/_shared/tests/test_utils.pyo
${PYSITELIB}/skimage/_shared/tests/test_version_requirements.py
${PYSITELIB}/skimage/_shared/tests/test_version_requirements.pyc
${PYSITELIB}/skimage/_shared/tests/test_version_requirements.pyo
${PYSITELIB}/skimage/_shared/transform.so
${PYSITELIB}/skimage/_shared/utils.py
${PYSITELIB}/skimage/_shared/utils.pyc
${PYSITELIB}/skimage/_shared/utils.pyo
${PYSITELIB}/skimage/_shared/version_requirements.py
${PYSITELIB}/skimage/_shared/version_requirements.pyc
${PYSITELIB}/skimage/_shared/version_requirements.pyo
${PYSITELIB}/skimage/color/__init__.py
${PYSITELIB}/skimage/color/__init__.pyc
${PYSITELIB}/skimage/color/__init__.pyo
${PYSITELIB}/skimage/color/adapt_rgb.py
${PYSITELIB}/skimage/color/adapt_rgb.pyc
${PYSITELIB}/skimage/color/adapt_rgb.pyo
${PYSITELIB}/skimage/color/colorconv.py
${PYSITELIB}/skimage/color/colorconv.pyc
${PYSITELIB}/skimage/color/colorconv.pyo
${PYSITELIB}/skimage/color/colorlabel.py
${PYSITELIB}/skimage/color/colorlabel.pyc
${PYSITELIB}/skimage/color/colorlabel.pyo
${PYSITELIB}/skimage/color/delta_e.py
${PYSITELIB}/skimage/color/delta_e.pyc
${PYSITELIB}/skimage/color/delta_e.pyo
${PYSITELIB}/skimage/color/rgb_colors.py
${PYSITELIB}/skimage/color/rgb_colors.pyc
${PYSITELIB}/skimage/color/rgb_colors.pyo
${PYSITELIB}/skimage/color/tests/__init__.py
${PYSITELIB}/skimage/color/tests/__init__.pyc
${PYSITELIB}/skimage/color/tests/__init__.pyo
${PYSITELIB}/skimage/color/tests/ciede2000_test_data.txt
${PYSITELIB}/skimage/color/tests/data/lab_array_a_2.npy
${PYSITELIB}/skimage/color/tests/data/lab_array_d50_10.npy
${PYSITELIB}/skimage/color/tests/data/lab_array_d50_2.npy
${PYSITELIB}/skimage/color/tests/data/lab_array_d55_10.npy
${PYSITELIB}/skimage/color/tests/data/lab_array_d55_2.npy
${PYSITELIB}/skimage/color/tests/data/lab_array_d65_10.npy
${PYSITELIB}/skimage/color/tests/data/lab_array_d65_2.npy
${PYSITELIB}/skimage/color/tests/data/lab_array_d75_10.npy
${PYSITELIB}/skimage/color/tests/data/lab_array_d75_2.npy
${PYSITELIB}/skimage/color/tests/data/lab_array_e_2.npy
${PYSITELIB}/skimage/color/tests/data/luv_array_a_2.npy
${PYSITELIB}/skimage/color/tests/data/luv_array_d50_10.npy
${PYSITELIB}/skimage/color/tests/data/luv_array_d50_2.npy
${PYSITELIB}/skimage/color/tests/data/luv_array_d55_10.npy
${PYSITELIB}/skimage/color/tests/data/luv_array_d55_2.npy
${PYSITELIB}/skimage/color/tests/data/luv_array_d65_10.npy
${PYSITELIB}/skimage/color/tests/data/luv_array_d65_2.npy
${PYSITELIB}/skimage/color/tests/data/luv_array_d75_10.npy
${PYSITELIB}/skimage/color/tests/data/luv_array_d75_2.npy
${PYSITELIB}/skimage/color/tests/data/luv_array_e_2.npy
${PYSITELIB}/skimage/color/tests/test_adapt_rgb.py
${PYSITELIB}/skimage/color/tests/test_adapt_rgb.pyc
${PYSITELIB}/skimage/color/tests/test_adapt_rgb.pyo
${PYSITELIB}/skimage/color/tests/test_colorconv.py
${PYSITELIB}/skimage/color/tests/test_colorconv.pyc
${PYSITELIB}/skimage/color/tests/test_colorconv.pyo
${PYSITELIB}/skimage/color/tests/test_colorlabel.py
${PYSITELIB}/skimage/color/tests/test_colorlabel.pyc
${PYSITELIB}/skimage/color/tests/test_colorlabel.pyo
${PYSITELIB}/skimage/color/tests/test_delta_e.py
${PYSITELIB}/skimage/color/tests/test_delta_e.pyc
${PYSITELIB}/skimage/color/tests/test_delta_e.pyo
${PYSITELIB}/skimage/conftest.py
${PYSITELIB}/skimage/conftest.pyc
${PYSITELIB}/skimage/conftest.pyo
${PYSITELIB}/skimage/data/__init__.py
${PYSITELIB}/skimage/data/__init__.pyc
${PYSITELIB}/skimage/data/__init__.pyo
${PYSITELIB}/skimage/data/_binary_blobs.py
${PYSITELIB}/skimage/data/_binary_blobs.pyc
${PYSITELIB}/skimage/data/_binary_blobs.pyo
${PYSITELIB}/skimage/data/_blobs_3d_fiji_skeleton.tif
${PYSITELIB}/skimage/data/_detect.py
${PYSITELIB}/skimage/data/_detect.pyc
${PYSITELIB}/skimage/data/_detect.pyo
${PYSITELIB}/skimage/data/astronaut.png
${PYSITELIB}/skimage/data/astronaut_GRAY_hog_L1.npy
${PYSITELIB}/skimage/data/astronaut_GRAY_hog_L2-Hys.npy
${PYSITELIB}/skimage/data/block.png
${PYSITELIB}/skimage/data/brick.png
${PYSITELIB}/skimage/data/bw_text.png
${PYSITELIB}/skimage/data/bw_text_skeleton.npy
${PYSITELIB}/skimage/data/camera.png
${PYSITELIB}/skimage/data/cells_qpi.npz
${PYSITELIB}/skimage/data/cells_qpi_zipped.zip
${PYSITELIB}/skimage/data/checker_bilevel.png
${PYSITELIB}/skimage/data/chelsea.png
${PYSITELIB}/skimage/data/chessboard_GRAY.png
${PYSITELIB}/skimage/data/chessboard_GRAY_U16.tif
${PYSITELIB}/skimage/data/chessboard_GRAY_U16B.tif
${PYSITELIB}/skimage/data/chessboard_GRAY_U8.npy
${PYSITELIB}/skimage/data/chessboard_GRAY_U8.npz
${PYSITELIB}/skimage/data/chessboard_RGB.png
${PYSITELIB}/skimage/data/chessboard_RGB_U8.npy
${PYSITELIB}/skimage/data/chessboard_RGB_U8.npz
${PYSITELIB}/skimage/data/clock_motion.png
${PYSITELIB}/skimage/data/coffee.png
${PYSITELIB}/skimage/data/coins.png
${PYSITELIB}/skimage/data/color.png
${PYSITELIB}/skimage/data/diamond-matlab-output.npz
${PYSITELIB}/skimage/data/disk-matlab-output.npz
${PYSITELIB}/skimage/data/foo3x5x4indexed.png
${PYSITELIB}/skimage/data/grass.png
${PYSITELIB}/skimage/data/gray_morph_output.npz
${PYSITELIB}/skimage/data/green_palette.png
${PYSITELIB}/skimage/data/horse.png
${PYSITELIB}/skimage/data/hubble_deep_field.jpg
${PYSITELIB}/skimage/data/ihc.png
${PYSITELIB}/skimage/data/lbpcascade_frontalface_opencv.xml
${PYSITELIB}/skimage/data/lfw_subset.npy
${PYSITELIB}/skimage/data/logo.png
${PYSITELIB}/skimage/data/microaneurysms.png
${PYSITELIB}/skimage/data/moon.png
${PYSITELIB}/skimage/data/motorcycle_disp.npz
${PYSITELIB}/skimage/data/motorcycle_left.png
${PYSITELIB}/skimage/data/motorcycle_right.png
${PYSITELIB}/skimage/data/mssim_matlab_output.npz
${PYSITELIB}/skimage/data/multi.fits
${PYSITELIB}/skimage/data/multipage.tif
${PYSITELIB}/skimage/data/multipage_rgb.tif
${PYSITELIB}/skimage/data/no_time_for_that_tiny.gif
${PYSITELIB}/skimage/data/orb_descriptor_positions.txt
${PYSITELIB}/skimage/data/page.png
${PYSITELIB}/skimage/data/palette_color.png
${PYSITELIB}/skimage/data/palette_gray.png
${PYSITELIB}/skimage/data/phantom.png
${PYSITELIB}/skimage/data/rank_filter_tests.npz
${PYSITELIB}/skimage/data/retina.jpg
${PYSITELIB}/skimage/data/rocket.jpg
${PYSITELIB}/skimage/data/rough-wall.png
${PYSITELIB}/skimage/data/simple.fits
${PYSITELIB}/skimage/data/tests/__init__.py
${PYSITELIB}/skimage/data/tests/__init__.pyc
${PYSITELIB}/skimage/data/tests/__init__.pyo
${PYSITELIB}/skimage/data/tests/test_data.py
${PYSITELIB}/skimage/data/tests/test_data.pyc
${PYSITELIB}/skimage/data/tests/test_data.pyo
${PYSITELIB}/skimage/data/text.png
${PYSITELIB}/skimage/data/truncated.jpg
${PYSITELIB}/skimage/draw/__init__.py
${PYSITELIB}/skimage/draw/__init__.pyc
${PYSITELIB}/skimage/draw/__init__.pyo
${PYSITELIB}/skimage/draw/_draw.so
${PYSITELIB}/skimage/draw/_random_shapes.py
${PYSITELIB}/skimage/draw/_random_shapes.pyc
${PYSITELIB}/skimage/draw/_random_shapes.pyo
${PYSITELIB}/skimage/draw/draw.py
${PYSITELIB}/skimage/draw/draw.pyc
${PYSITELIB}/skimage/draw/draw.pyo
${PYSITELIB}/skimage/draw/draw3d.py
${PYSITELIB}/skimage/draw/draw3d.pyc
${PYSITELIB}/skimage/draw/draw3d.pyo
${PYSITELIB}/skimage/draw/setup.py
${PYSITELIB}/skimage/draw/setup.pyc
${PYSITELIB}/skimage/draw/setup.pyo
${PYSITELIB}/skimage/draw/tests/__init__.py
${PYSITELIB}/skimage/draw/tests/__init__.pyc
${PYSITELIB}/skimage/draw/tests/__init__.pyo
${PYSITELIB}/skimage/draw/tests/test_draw.py
${PYSITELIB}/skimage/draw/tests/test_draw.pyc
${PYSITELIB}/skimage/draw/tests/test_draw.pyo
${PYSITELIB}/skimage/draw/tests/test_draw3d.py
${PYSITELIB}/skimage/draw/tests/test_draw3d.pyc
${PYSITELIB}/skimage/draw/tests/test_draw3d.pyo
${PYSITELIB}/skimage/draw/tests/test_random_shapes.py
${PYSITELIB}/skimage/draw/tests/test_random_shapes.pyc
${PYSITELIB}/skimage/draw/tests/test_random_shapes.pyo
${PYSITELIB}/skimage/exposure/__init__.py
${PYSITELIB}/skimage/exposure/__init__.pyc
${PYSITELIB}/skimage/exposure/__init__.pyo
${PYSITELIB}/skimage/exposure/_adapthist.py
${PYSITELIB}/skimage/exposure/_adapthist.pyc
${PYSITELIB}/skimage/exposure/_adapthist.pyo
${PYSITELIB}/skimage/exposure/exposure.py
${PYSITELIB}/skimage/exposure/exposure.pyc
${PYSITELIB}/skimage/exposure/exposure.pyo
${PYSITELIB}/skimage/exposure/setup.py
${PYSITELIB}/skimage/exposure/setup.pyc
${PYSITELIB}/skimage/exposure/setup.pyo
${PYSITELIB}/skimage/exposure/tests/__init__.py
${PYSITELIB}/skimage/exposure/tests/__init__.pyc
${PYSITELIB}/skimage/exposure/tests/__init__.pyo
${PYSITELIB}/skimage/exposure/tests/test_exposure.py
${PYSITELIB}/skimage/exposure/tests/test_exposure.pyc
${PYSITELIB}/skimage/exposure/tests/test_exposure.pyo
${PYSITELIB}/skimage/external/__init__.py
${PYSITELIB}/skimage/external/__init__.pyc
${PYSITELIB}/skimage/external/__init__.pyo
${PYSITELIB}/skimage/external/setup.py
${PYSITELIB}/skimage/external/setup.pyc
${PYSITELIB}/skimage/external/setup.pyo
${PYSITELIB}/skimage/external/test_tifffile.py
${PYSITELIB}/skimage/external/test_tifffile.pyc
${PYSITELIB}/skimage/external/test_tifffile.pyo
${PYSITELIB}/skimage/external/tifffile/__init__.py
${PYSITELIB}/skimage/external/tifffile/__init__.pyc
${PYSITELIB}/skimage/external/tifffile/__init__.pyo
${PYSITELIB}/skimage/external/tifffile/_tifffile.so
${PYSITELIB}/skimage/external/tifffile/tifffile.py
${PYSITELIB}/skimage/external/tifffile/tifffile.pyc
${PYSITELIB}/skimage/external/tifffile/tifffile.pyo
${PYSITELIB}/skimage/feature/__init__.py
${PYSITELIB}/skimage/feature/__init__.pyc
${PYSITELIB}/skimage/feature/__init__.pyo
${PYSITELIB}/skimage/feature/_canny.py
${PYSITELIB}/skimage/feature/_canny.pyc
${PYSITELIB}/skimage/feature/_canny.pyo
${PYSITELIB}/skimage/feature/_cascade.so
${PYSITELIB}/skimage/feature/_daisy.py
${PYSITELIB}/skimage/feature/_daisy.pyc
${PYSITELIB}/skimage/feature/_daisy.pyo
${PYSITELIB}/skimage/feature/_haar.so
${PYSITELIB}/skimage/feature/_hessian_det_appx.so
${PYSITELIB}/skimage/feature/_hog.py
${PYSITELIB}/skimage/feature/_hog.pyc
${PYSITELIB}/skimage/feature/_hog.pyo
${PYSITELIB}/skimage/feature/_hoghistogram.so
${PYSITELIB}/skimage/feature/_texture.so
${PYSITELIB}/skimage/feature/blob.py
${PYSITELIB}/skimage/feature/blob.pyc
${PYSITELIB}/skimage/feature/blob.pyo
${PYSITELIB}/skimage/feature/brief.py
${PYSITELIB}/skimage/feature/brief.pyc
${PYSITELIB}/skimage/feature/brief.pyo
${PYSITELIB}/skimage/feature/brief_cy.so
${PYSITELIB}/skimage/feature/censure.py
${PYSITELIB}/skimage/feature/censure.pyc
${PYSITELIB}/skimage/feature/censure.pyo
${PYSITELIB}/skimage/feature/censure_cy.so
${PYSITELIB}/skimage/feature/corner.py
${PYSITELIB}/skimage/feature/corner.pyc
${PYSITELIB}/skimage/feature/corner.pyo
${PYSITELIB}/skimage/feature/corner_cy.so
${PYSITELIB}/skimage/feature/haar.py
${PYSITELIB}/skimage/feature/haar.pyc
${PYSITELIB}/skimage/feature/haar.pyo
${PYSITELIB}/skimage/feature/masked_register_translation.py
${PYSITELIB}/skimage/feature/masked_register_translation.pyc
${PYSITELIB}/skimage/feature/masked_register_translation.pyo
${PYSITELIB}/skimage/feature/match.py
${PYSITELIB}/skimage/feature/match.pyc
${PYSITELIB}/skimage/feature/match.pyo
${PYSITELIB}/skimage/feature/orb.py
${PYSITELIB}/skimage/feature/orb.pyc
${PYSITELIB}/skimage/feature/orb.pyo
${PYSITELIB}/skimage/feature/orb_cy.so
${PYSITELIB}/skimage/feature/peak.py
${PYSITELIB}/skimage/feature/peak.pyc
${PYSITELIB}/skimage/feature/peak.pyo
${PYSITELIB}/skimage/feature/register_translation.py
${PYSITELIB}/skimage/feature/register_translation.pyc
${PYSITELIB}/skimage/feature/register_translation.pyo
${PYSITELIB}/skimage/feature/setup.py
${PYSITELIB}/skimage/feature/setup.pyc
${PYSITELIB}/skimage/feature/setup.pyo
${PYSITELIB}/skimage/feature/template.py
${PYSITELIB}/skimage/feature/template.pyc
${PYSITELIB}/skimage/feature/template.pyo
${PYSITELIB}/skimage/feature/tests/__init__.py
${PYSITELIB}/skimage/feature/tests/__init__.pyc
${PYSITELIB}/skimage/feature/tests/__init__.pyo
${PYSITELIB}/skimage/feature/tests/data/OriginalX-130Y130.png
${PYSITELIB}/skimage/feature/tests/data/OriginalX130Y130.png
${PYSITELIB}/skimage/feature/tests/data/OriginalX75Y75.png
${PYSITELIB}/skimage/feature/tests/data/TransformedX-130Y130.png
${PYSITELIB}/skimage/feature/tests/data/TransformedX130Y130.png
${PYSITELIB}/skimage/feature/tests/data/TransformedX75Y75.png
${PYSITELIB}/skimage/feature/tests/test_blob.py
${PYSITELIB}/skimage/feature/tests/test_blob.pyc
${PYSITELIB}/skimage/feature/tests/test_blob.pyo
${PYSITELIB}/skimage/feature/tests/test_brief.py
${PYSITELIB}/skimage/feature/tests/test_brief.pyc
${PYSITELIB}/skimage/feature/tests/test_brief.pyo
${PYSITELIB}/skimage/feature/tests/test_canny.py
${PYSITELIB}/skimage/feature/tests/test_canny.pyc
${PYSITELIB}/skimage/feature/tests/test_canny.pyo
${PYSITELIB}/skimage/feature/tests/test_cascade.py
${PYSITELIB}/skimage/feature/tests/test_cascade.pyc
${PYSITELIB}/skimage/feature/tests/test_cascade.pyo
${PYSITELIB}/skimage/feature/tests/test_censure.py
${PYSITELIB}/skimage/feature/tests/test_censure.pyc
${PYSITELIB}/skimage/feature/tests/test_censure.pyo
${PYSITELIB}/skimage/feature/tests/test_corner.py
${PYSITELIB}/skimage/feature/tests/test_corner.pyc
${PYSITELIB}/skimage/feature/tests/test_corner.pyo
${PYSITELIB}/skimage/feature/tests/test_daisy.py
${PYSITELIB}/skimage/feature/tests/test_daisy.pyc
${PYSITELIB}/skimage/feature/tests/test_daisy.pyo
${PYSITELIB}/skimage/feature/tests/test_haar.py
${PYSITELIB}/skimage/feature/tests/test_haar.pyc
${PYSITELIB}/skimage/feature/tests/test_haar.pyo
${PYSITELIB}/skimage/feature/tests/test_hog.py
${PYSITELIB}/skimage/feature/tests/test_hog.pyc
${PYSITELIB}/skimage/feature/tests/test_hog.pyo
${PYSITELIB}/skimage/feature/tests/test_masked_register_translation.py
${PYSITELIB}/skimage/feature/tests/test_masked_register_translation.pyc
${PYSITELIB}/skimage/feature/tests/test_masked_register_translation.pyo
${PYSITELIB}/skimage/feature/tests/test_match.py
${PYSITELIB}/skimage/feature/tests/test_match.pyc
${PYSITELIB}/skimage/feature/tests/test_match.pyo
${PYSITELIB}/skimage/feature/tests/test_orb.py
${PYSITELIB}/skimage/feature/tests/test_orb.pyc
${PYSITELIB}/skimage/feature/tests/test_orb.pyo
${PYSITELIB}/skimage/feature/tests/test_peak.py
${PYSITELIB}/skimage/feature/tests/test_peak.pyc
${PYSITELIB}/skimage/feature/tests/test_peak.pyo
${PYSITELIB}/skimage/feature/tests/test_register_translation.py
${PYSITELIB}/skimage/feature/tests/test_register_translation.pyc
${PYSITELIB}/skimage/feature/tests/test_register_translation.pyo
${PYSITELIB}/skimage/feature/tests/test_template.py
${PYSITELIB}/skimage/feature/tests/test_template.pyc
${PYSITELIB}/skimage/feature/tests/test_template.pyo
${PYSITELIB}/skimage/feature/tests/test_texture.py
${PYSITELIB}/skimage/feature/tests/test_texture.pyc
${PYSITELIB}/skimage/feature/tests/test_texture.pyo
${PYSITELIB}/skimage/feature/tests/test_util.py
${PYSITELIB}/skimage/feature/tests/test_util.pyc
${PYSITELIB}/skimage/feature/tests/test_util.pyo
${PYSITELIB}/skimage/feature/texture.py
${PYSITELIB}/skimage/feature/texture.pyc
${PYSITELIB}/skimage/feature/texture.pyo
${PYSITELIB}/skimage/feature/util.py
${PYSITELIB}/skimage/feature/util.pyc
${PYSITELIB}/skimage/feature/util.pyo
${PYSITELIB}/skimage/filters/__init__.py
${PYSITELIB}/skimage/filters/__init__.pyc
${PYSITELIB}/skimage/filters/__init__.pyo
${PYSITELIB}/skimage/filters/_gabor.py
${PYSITELIB}/skimage/filters/_gabor.pyc
${PYSITELIB}/skimage/filters/_gabor.pyo
${PYSITELIB}/skimage/filters/_gaussian.py
${PYSITELIB}/skimage/filters/_gaussian.pyc
${PYSITELIB}/skimage/filters/_gaussian.pyo
${PYSITELIB}/skimage/filters/_median.py
${PYSITELIB}/skimage/filters/_median.pyc
${PYSITELIB}/skimage/filters/_median.pyo
${PYSITELIB}/skimage/filters/_rank_order.py
${PYSITELIB}/skimage/filters/_rank_order.pyc
${PYSITELIB}/skimage/filters/_rank_order.pyo
${PYSITELIB}/skimage/filters/_unsharp_mask.py
${PYSITELIB}/skimage/filters/_unsharp_mask.pyc
${PYSITELIB}/skimage/filters/_unsharp_mask.pyo
${PYSITELIB}/skimage/filters/edges.py
${PYSITELIB}/skimage/filters/edges.pyc
${PYSITELIB}/skimage/filters/edges.pyo
${PYSITELIB}/skimage/filters/lpi_filter.py
${PYSITELIB}/skimage/filters/lpi_filter.pyc
${PYSITELIB}/skimage/filters/lpi_filter.pyo
${PYSITELIB}/skimage/filters/rank/__init__.py
${PYSITELIB}/skimage/filters/rank/__init__.pyc
${PYSITELIB}/skimage/filters/rank/__init__.pyo
${PYSITELIB}/skimage/filters/rank/_percentile.py
${PYSITELIB}/skimage/filters/rank/_percentile.pyc
${PYSITELIB}/skimage/filters/rank/_percentile.pyo
${PYSITELIB}/skimage/filters/rank/bilateral.py
${PYSITELIB}/skimage/filters/rank/bilateral.pyc
${PYSITELIB}/skimage/filters/rank/bilateral.pyo
${PYSITELIB}/skimage/filters/rank/bilateral_cy.so
${PYSITELIB}/skimage/filters/rank/core_cy.so
${PYSITELIB}/skimage/filters/rank/generic.py
${PYSITELIB}/skimage/filters/rank/generic.pyc
${PYSITELIB}/skimage/filters/rank/generic.pyo
${PYSITELIB}/skimage/filters/rank/generic_cy.so
${PYSITELIB}/skimage/filters/rank/percentile_cy.so
${PYSITELIB}/skimage/filters/rank/tests/__init__.py
${PYSITELIB}/skimage/filters/rank/tests/__init__.pyc
${PYSITELIB}/skimage/filters/rank/tests/__init__.pyo
${PYSITELIB}/skimage/filters/rank/tests/test_rank.py
${PYSITELIB}/skimage/filters/rank/tests/test_rank.pyc
${PYSITELIB}/skimage/filters/rank/tests/test_rank.pyo
${PYSITELIB}/skimage/filters/ridges.py
${PYSITELIB}/skimage/filters/ridges.pyc
${PYSITELIB}/skimage/filters/ridges.pyo
${PYSITELIB}/skimage/filters/setup.py
${PYSITELIB}/skimage/filters/setup.pyc
${PYSITELIB}/skimage/filters/setup.pyo
${PYSITELIB}/skimage/filters/tests/__init__.py
${PYSITELIB}/skimage/filters/tests/__init__.pyc
${PYSITELIB}/skimage/filters/tests/__init__.pyo
${PYSITELIB}/skimage/filters/tests/test_edges.py
${PYSITELIB}/skimage/filters/tests/test_edges.pyc
${PYSITELIB}/skimage/filters/tests/test_edges.pyo
${PYSITELIB}/skimage/filters/tests/test_gabor.py
${PYSITELIB}/skimage/filters/tests/test_gabor.pyc
${PYSITELIB}/skimage/filters/tests/test_gabor.pyo
${PYSITELIB}/skimage/filters/tests/test_gaussian.py
${PYSITELIB}/skimage/filters/tests/test_gaussian.pyc
${PYSITELIB}/skimage/filters/tests/test_gaussian.pyo
${PYSITELIB}/skimage/filters/tests/test_lpi_filter.py
${PYSITELIB}/skimage/filters/tests/test_lpi_filter.pyc
${PYSITELIB}/skimage/filters/tests/test_lpi_filter.pyo
${PYSITELIB}/skimage/filters/tests/test_median.py
${PYSITELIB}/skimage/filters/tests/test_median.pyc
${PYSITELIB}/skimage/filters/tests/test_median.pyo
${PYSITELIB}/skimage/filters/tests/test_ridges.py
${PYSITELIB}/skimage/filters/tests/test_ridges.pyc
${PYSITELIB}/skimage/filters/tests/test_ridges.pyo
${PYSITELIB}/skimage/filters/tests/test_thresholding.py
${PYSITELIB}/skimage/filters/tests/test_thresholding.pyc
${PYSITELIB}/skimage/filters/tests/test_thresholding.pyo
${PYSITELIB}/skimage/filters/tests/test_unsharp_mask.py
${PYSITELIB}/skimage/filters/tests/test_unsharp_mask.pyc
${PYSITELIB}/skimage/filters/tests/test_unsharp_mask.pyo
${PYSITELIB}/skimage/filters/thresholding.py
${PYSITELIB}/skimage/filters/thresholding.pyc
${PYSITELIB}/skimage/filters/thresholding.pyo
${PYSITELIB}/skimage/future/__init__.py
${PYSITELIB}/skimage/future/__init__.pyc
${PYSITELIB}/skimage/future/__init__.pyo
${PYSITELIB}/skimage/future/graph/__init__.py
${PYSITELIB}/skimage/future/graph/__init__.pyc
${PYSITELIB}/skimage/future/graph/__init__.pyo
${PYSITELIB}/skimage/future/graph/_ncut.py
${PYSITELIB}/skimage/future/graph/_ncut.pyc
${PYSITELIB}/skimage/future/graph/_ncut.pyo
${PYSITELIB}/skimage/future/graph/_ncut_cy.so
${PYSITELIB}/skimage/future/graph/graph_cut.py
${PYSITELIB}/skimage/future/graph/graph_cut.pyc
${PYSITELIB}/skimage/future/graph/graph_cut.pyo
${PYSITELIB}/skimage/future/graph/graph_merge.py
${PYSITELIB}/skimage/future/graph/graph_merge.pyc
${PYSITELIB}/skimage/future/graph/graph_merge.pyo
${PYSITELIB}/skimage/future/graph/rag.py
${PYSITELIB}/skimage/future/graph/rag.pyc
${PYSITELIB}/skimage/future/graph/rag.pyo
${PYSITELIB}/skimage/future/graph/setup.py
${PYSITELIB}/skimage/future/graph/setup.pyc
${PYSITELIB}/skimage/future/graph/setup.pyo
${PYSITELIB}/skimage/future/graph/tests/test_rag.py
${PYSITELIB}/skimage/future/manual_segmentation.py
${PYSITELIB}/skimage/future/manual_segmentation.pyc
${PYSITELIB}/skimage/future/manual_segmentation.pyo
${PYSITELIB}/skimage/future/setup.py
${PYSITELIB}/skimage/future/setup.pyc
${PYSITELIB}/skimage/future/setup.pyo
${PYSITELIB}/skimage/graph/__init__.py
${PYSITELIB}/skimage/graph/__init__.pyc
${PYSITELIB}/skimage/graph/__init__.pyo
${PYSITELIB}/skimage/graph/_mcp.so
${PYSITELIB}/skimage/graph/_spath.so
${PYSITELIB}/skimage/graph/heap.so
${PYSITELIB}/skimage/graph/mcp.py
${PYSITELIB}/skimage/graph/mcp.pyc
${PYSITELIB}/skimage/graph/mcp.pyo
${PYSITELIB}/skimage/graph/setup.py
${PYSITELIB}/skimage/graph/setup.pyc
${PYSITELIB}/skimage/graph/setup.pyo
${PYSITELIB}/skimage/graph/spath.py
${PYSITELIB}/skimage/graph/spath.pyc
${PYSITELIB}/skimage/graph/spath.pyo
${PYSITELIB}/skimage/graph/tests/__init__.py
${PYSITELIB}/skimage/graph/tests/__init__.pyc
${PYSITELIB}/skimage/graph/tests/__init__.pyo
${PYSITELIB}/skimage/graph/tests/test_anisotropy.py
${PYSITELIB}/skimage/graph/tests/test_anisotropy.pyc
${PYSITELIB}/skimage/graph/tests/test_anisotropy.pyo
${PYSITELIB}/skimage/graph/tests/test_connect.py
${PYSITELIB}/skimage/graph/tests/test_connect.pyc
${PYSITELIB}/skimage/graph/tests/test_connect.pyo
${PYSITELIB}/skimage/graph/tests/test_flexible.py
${PYSITELIB}/skimage/graph/tests/test_flexible.pyc
${PYSITELIB}/skimage/graph/tests/test_flexible.pyo
${PYSITELIB}/skimage/graph/tests/test_heap.py
${PYSITELIB}/skimage/graph/tests/test_heap.pyc
${PYSITELIB}/skimage/graph/tests/test_heap.pyo
${PYSITELIB}/skimage/graph/tests/test_mcp.py
${PYSITELIB}/skimage/graph/tests/test_mcp.pyc
${PYSITELIB}/skimage/graph/tests/test_mcp.pyo
${PYSITELIB}/skimage/graph/tests/test_spath.py
${PYSITELIB}/skimage/graph/tests/test_spath.pyc
${PYSITELIB}/skimage/graph/tests/test_spath.pyo
${PYSITELIB}/skimage/io/__init__.py
${PYSITELIB}/skimage/io/__init__.pyc
${PYSITELIB}/skimage/io/__init__.pyo
${PYSITELIB}/skimage/io/_image_stack.py
${PYSITELIB}/skimage/io/_image_stack.pyc
${PYSITELIB}/skimage/io/_image_stack.pyo
${PYSITELIB}/skimage/io/_io.py
${PYSITELIB}/skimage/io/_io.pyc
${PYSITELIB}/skimage/io/_io.pyo
${PYSITELIB}/skimage/io/_plugins/__init__.py
${PYSITELIB}/skimage/io/_plugins/__init__.pyc
${PYSITELIB}/skimage/io/_plugins/__init__.pyo
${PYSITELIB}/skimage/io/_plugins/_colormixer.so
${PYSITELIB}/skimage/io/_plugins/_histograms.so
${PYSITELIB}/skimage/io/_plugins/fits_plugin.ini
${PYSITELIB}/skimage/io/_plugins/fits_plugin.py
${PYSITELIB}/skimage/io/_plugins/fits_plugin.pyc
${PYSITELIB}/skimage/io/_plugins/fits_plugin.pyo
${PYSITELIB}/skimage/io/_plugins/gdal_plugin.ini
${PYSITELIB}/skimage/io/_plugins/gdal_plugin.py
${PYSITELIB}/skimage/io/_plugins/gdal_plugin.pyc
${PYSITELIB}/skimage/io/_plugins/gdal_plugin.pyo
${PYSITELIB}/skimage/io/_plugins/gtk_plugin.ini
${PYSITELIB}/skimage/io/_plugins/gtk_plugin.py
${PYSITELIB}/skimage/io/_plugins/gtk_plugin.pyc
${PYSITELIB}/skimage/io/_plugins/gtk_plugin.pyo
${PYSITELIB}/skimage/io/_plugins/imageio_plugin.ini
${PYSITELIB}/skimage/io/_plugins/imageio_plugin.py
${PYSITELIB}/skimage/io/_plugins/imageio_plugin.pyc
${PYSITELIB}/skimage/io/_plugins/imageio_plugin.pyo
${PYSITELIB}/skimage/io/_plugins/imread_plugin.ini
${PYSITELIB}/skimage/io/_plugins/imread_plugin.py
${PYSITELIB}/skimage/io/_plugins/imread_plugin.pyc
${PYSITELIB}/skimage/io/_plugins/imread_plugin.pyo
${PYSITELIB}/skimage/io/_plugins/matplotlib_plugin.ini
${PYSITELIB}/skimage/io/_plugins/matplotlib_plugin.py
${PYSITELIB}/skimage/io/_plugins/matplotlib_plugin.pyc
${PYSITELIB}/skimage/io/_plugins/matplotlib_plugin.pyo
${PYSITELIB}/skimage/io/_plugins/pil_plugin.ini
${PYSITELIB}/skimage/io/_plugins/pil_plugin.py
${PYSITELIB}/skimage/io/_plugins/pil_plugin.pyc
${PYSITELIB}/skimage/io/_plugins/pil_plugin.pyo
${PYSITELIB}/skimage/io/_plugins/q_color_mixer.py
${PYSITELIB}/skimage/io/_plugins/q_color_mixer.pyc
${PYSITELIB}/skimage/io/_plugins/q_color_mixer.pyo
${PYSITELIB}/skimage/io/_plugins/q_histogram.py
${PYSITELIB}/skimage/io/_plugins/q_histogram.pyc
${PYSITELIB}/skimage/io/_plugins/q_histogram.pyo
${PYSITELIB}/skimage/io/_plugins/qt_plugin.ini
${PYSITELIB}/skimage/io/_plugins/qt_plugin.py
${PYSITELIB}/skimage/io/_plugins/qt_plugin.pyc
${PYSITELIB}/skimage/io/_plugins/qt_plugin.pyo
${PYSITELIB}/skimage/io/_plugins/simpleitk_plugin.ini
${PYSITELIB}/skimage/io/_plugins/simpleitk_plugin.py
${PYSITELIB}/skimage/io/_plugins/simpleitk_plugin.pyc
${PYSITELIB}/skimage/io/_plugins/simpleitk_plugin.pyo
${PYSITELIB}/skimage/io/_plugins/skivi.py
${PYSITELIB}/skimage/io/_plugins/skivi.pyc
${PYSITELIB}/skimage/io/_plugins/skivi.pyo
${PYSITELIB}/skimage/io/_plugins/tifffile_plugin.ini
${PYSITELIB}/skimage/io/_plugins/tifffile_plugin.py
${PYSITELIB}/skimage/io/_plugins/tifffile_plugin.pyc
${PYSITELIB}/skimage/io/_plugins/tifffile_plugin.pyo
${PYSITELIB}/skimage/io/_plugins/util.py
${PYSITELIB}/skimage/io/_plugins/util.pyc
${PYSITELIB}/skimage/io/_plugins/util.pyo
${PYSITELIB}/skimage/io/collection.py
${PYSITELIB}/skimage/io/collection.pyc
${PYSITELIB}/skimage/io/collection.pyo
${PYSITELIB}/skimage/io/manage_plugins.py
${PYSITELIB}/skimage/io/manage_plugins.pyc
${PYSITELIB}/skimage/io/manage_plugins.pyo
${PYSITELIB}/skimage/io/setup.py
${PYSITELIB}/skimage/io/setup.pyc
${PYSITELIB}/skimage/io/setup.pyo
${PYSITELIB}/skimage/io/sift.py
${PYSITELIB}/skimage/io/sift.pyc
${PYSITELIB}/skimage/io/sift.pyo
${PYSITELIB}/skimage/io/tests/__init__.py
${PYSITELIB}/skimage/io/tests/__init__.pyc
${PYSITELIB}/skimage/io/tests/__init__.pyo
${PYSITELIB}/skimage/io/tests/test_collection.py
${PYSITELIB}/skimage/io/tests/test_collection.pyc
${PYSITELIB}/skimage/io/tests/test_collection.pyo
${PYSITELIB}/skimage/io/tests/test_colormixer.py
${PYSITELIB}/skimage/io/tests/test_colormixer.pyc
${PYSITELIB}/skimage/io/tests/test_colormixer.pyo
${PYSITELIB}/skimage/io/tests/test_fits.py
${PYSITELIB}/skimage/io/tests/test_fits.pyc
${PYSITELIB}/skimage/io/tests/test_fits.pyo
${PYSITELIB}/skimage/io/tests/test_histograms.py
${PYSITELIB}/skimage/io/tests/test_histograms.pyc
${PYSITELIB}/skimage/io/tests/test_histograms.pyo
${PYSITELIB}/skimage/io/tests/test_imageio.py
${PYSITELIB}/skimage/io/tests/test_imageio.pyc
${PYSITELIB}/skimage/io/tests/test_imageio.pyo
${PYSITELIB}/skimage/io/tests/test_imread.py
${PYSITELIB}/skimage/io/tests/test_imread.pyc
${PYSITELIB}/skimage/io/tests/test_imread.pyo
${PYSITELIB}/skimage/io/tests/test_io.py
${PYSITELIB}/skimage/io/tests/test_io.pyc
${PYSITELIB}/skimage/io/tests/test_io.pyo
${PYSITELIB}/skimage/io/tests/test_mpl_imshow.py
${PYSITELIB}/skimage/io/tests/test_mpl_imshow.pyc
${PYSITELIB}/skimage/io/tests/test_mpl_imshow.pyo
${PYSITELIB}/skimage/io/tests/test_multi_image.py
${PYSITELIB}/skimage/io/tests/test_multi_image.pyc
${PYSITELIB}/skimage/io/tests/test_multi_image.pyo
${PYSITELIB}/skimage/io/tests/test_pil.py
${PYSITELIB}/skimage/io/tests/test_pil.pyc
${PYSITELIB}/skimage/io/tests/test_pil.pyo
${PYSITELIB}/skimage/io/tests/test_plugin.py
${PYSITELIB}/skimage/io/tests/test_plugin.pyc
${PYSITELIB}/skimage/io/tests/test_plugin.pyo
${PYSITELIB}/skimage/io/tests/test_plugin_util.py
${PYSITELIB}/skimage/io/tests/test_plugin_util.pyc
${PYSITELIB}/skimage/io/tests/test_plugin_util.pyo
${PYSITELIB}/skimage/io/tests/test_sift.py
${PYSITELIB}/skimage/io/tests/test_sift.pyc
${PYSITELIB}/skimage/io/tests/test_sift.pyo
${PYSITELIB}/skimage/io/tests/test_simpleitk.py
${PYSITELIB}/skimage/io/tests/test_simpleitk.pyc
${PYSITELIB}/skimage/io/tests/test_simpleitk.pyo
${PYSITELIB}/skimage/io/tests/test_tifffile.py
${PYSITELIB}/skimage/io/tests/test_tifffile.pyc
${PYSITELIB}/skimage/io/tests/test_tifffile.pyo
${PYSITELIB}/skimage/io/util.py
${PYSITELIB}/skimage/io/util.pyc
${PYSITELIB}/skimage/io/util.pyo
${PYSITELIB}/skimage/measure/__init__.py
${PYSITELIB}/skimage/measure/__init__.pyc
${PYSITELIB}/skimage/measure/__init__.pyo
${PYSITELIB}/skimage/measure/_ccomp.so
${PYSITELIB}/skimage/measure/_find_contours.py
${PYSITELIB}/skimage/measure/_find_contours.pyc
${PYSITELIB}/skimage/measure/_find_contours.pyo
${PYSITELIB}/skimage/measure/_find_contours_cy.so
${PYSITELIB}/skimage/measure/_label.py
${PYSITELIB}/skimage/measure/_label.pyc
${PYSITELIB}/skimage/measure/_label.pyo
${PYSITELIB}/skimage/measure/_marching_cubes_classic.py
${PYSITELIB}/skimage/measure/_marching_cubes_classic.pyc
${PYSITELIB}/skimage/measure/_marching_cubes_classic.pyo
${PYSITELIB}/skimage/measure/_marching_cubes_classic_cy.so
${PYSITELIB}/skimage/measure/_marching_cubes_lewiner.py
${PYSITELIB}/skimage/measure/_marching_cubes_lewiner.pyc
${PYSITELIB}/skimage/measure/_marching_cubes_lewiner.pyo
${PYSITELIB}/skimage/measure/_marching_cubes_lewiner_cy.so
${PYSITELIB}/skimage/measure/_marching_cubes_lewiner_luts.py
${PYSITELIB}/skimage/measure/_marching_cubes_lewiner_luts.pyc
${PYSITELIB}/skimage/measure/_marching_cubes_lewiner_luts.pyo
${PYSITELIB}/skimage/measure/_moments.py
${PYSITELIB}/skimage/measure/_moments.pyc
${PYSITELIB}/skimage/measure/_moments.pyo
${PYSITELIB}/skimage/measure/_moments_cy.so
${PYSITELIB}/skimage/measure/_pnpoly.so
${PYSITELIB}/skimage/measure/_polygon.py
${PYSITELIB}/skimage/measure/_polygon.pyc
${PYSITELIB}/skimage/measure/_polygon.pyo
${PYSITELIB}/skimage/measure/_regionprops.py
${PYSITELIB}/skimage/measure/_regionprops.pyc
${PYSITELIB}/skimage/measure/_regionprops.pyo
${PYSITELIB}/skimage/measure/_structural_similarity.py
${PYSITELIB}/skimage/measure/_structural_similarity.pyc
${PYSITELIB}/skimage/measure/_structural_similarity.pyo
${PYSITELIB}/skimage/measure/block.py
${PYSITELIB}/skimage/measure/block.pyc
${PYSITELIB}/skimage/measure/block.pyo
${PYSITELIB}/skimage/measure/entropy.py
${PYSITELIB}/skimage/measure/entropy.pyc
${PYSITELIB}/skimage/measure/entropy.pyo
${PYSITELIB}/skimage/measure/fit.py
${PYSITELIB}/skimage/measure/fit.pyc
${PYSITELIB}/skimage/measure/fit.pyo
${PYSITELIB}/skimage/measure/pnpoly.py
${PYSITELIB}/skimage/measure/pnpoly.pyc
${PYSITELIB}/skimage/measure/pnpoly.pyo
${PYSITELIB}/skimage/measure/profile.py
${PYSITELIB}/skimage/measure/profile.pyc
${PYSITELIB}/skimage/measure/profile.pyo
${PYSITELIB}/skimage/measure/setup.py
${PYSITELIB}/skimage/measure/setup.pyc
${PYSITELIB}/skimage/measure/setup.pyo
${PYSITELIB}/skimage/measure/simple_metrics.py
${PYSITELIB}/skimage/measure/simple_metrics.pyc
${PYSITELIB}/skimage/measure/simple_metrics.pyo
${PYSITELIB}/skimage/measure/tests/__init__.py
${PYSITELIB}/skimage/measure/tests/__init__.pyc
${PYSITELIB}/skimage/measure/tests/__init__.pyo
${PYSITELIB}/skimage/measure/tests/test_block.py
${PYSITELIB}/skimage/measure/tests/test_block.pyc
${PYSITELIB}/skimage/measure/tests/test_block.pyo
${PYSITELIB}/skimage/measure/tests/test_entropy.py
${PYSITELIB}/skimage/measure/tests/test_entropy.pyc
${PYSITELIB}/skimage/measure/tests/test_entropy.pyo
${PYSITELIB}/skimage/measure/tests/test_find_contours.py
${PYSITELIB}/skimage/measure/tests/test_find_contours.pyc
${PYSITELIB}/skimage/measure/tests/test_find_contours.pyo
${PYSITELIB}/skimage/measure/tests/test_fit.py
${PYSITELIB}/skimage/measure/tests/test_fit.pyc
${PYSITELIB}/skimage/measure/tests/test_fit.pyo
${PYSITELIB}/skimage/measure/tests/test_marching_cubes.py
${PYSITELIB}/skimage/measure/tests/test_marching_cubes.pyc
${PYSITELIB}/skimage/measure/tests/test_marching_cubes.pyo
${PYSITELIB}/skimage/measure/tests/test_moments.py
${PYSITELIB}/skimage/measure/tests/test_moments.pyc
${PYSITELIB}/skimage/measure/tests/test_moments.pyo
${PYSITELIB}/skimage/measure/tests/test_pnpoly.py
${PYSITELIB}/skimage/measure/tests/test_pnpoly.pyc
${PYSITELIB}/skimage/measure/tests/test_pnpoly.pyo
${PYSITELIB}/skimage/measure/tests/test_polygon.py
${PYSITELIB}/skimage/measure/tests/test_polygon.pyc
${PYSITELIB}/skimage/measure/tests/test_polygon.pyo
${PYSITELIB}/skimage/measure/tests/test_profile.py
${PYSITELIB}/skimage/measure/tests/test_profile.pyc
${PYSITELIB}/skimage/measure/tests/test_profile.pyo
${PYSITELIB}/skimage/measure/tests/test_regionprops.py
${PYSITELIB}/skimage/measure/tests/test_regionprops.pyc
${PYSITELIB}/skimage/measure/tests/test_regionprops.pyo
${PYSITELIB}/skimage/measure/tests/test_simple_metrics.py
${PYSITELIB}/skimage/measure/tests/test_simple_metrics.pyc
${PYSITELIB}/skimage/measure/tests/test_simple_metrics.pyo
${PYSITELIB}/skimage/measure/tests/test_structural_similarity.py
${PYSITELIB}/skimage/measure/tests/test_structural_similarity.pyc
${PYSITELIB}/skimage/measure/tests/test_structural_similarity.pyo
${PYSITELIB}/skimage/morphology/__init__.py
${PYSITELIB}/skimage/morphology/__init__.pyc
${PYSITELIB}/skimage/morphology/__init__.pyo
${PYSITELIB}/skimage/morphology/_convex_hull.so
${PYSITELIB}/skimage/morphology/_extrema_cy.so
${PYSITELIB}/skimage/morphology/_flood_fill.py
${PYSITELIB}/skimage/morphology/_flood_fill.pyc
${PYSITELIB}/skimage/morphology/_flood_fill.pyo
${PYSITELIB}/skimage/morphology/_flood_fill_cy.so
${PYSITELIB}/skimage/morphology/_greyreconstruct.so
${PYSITELIB}/skimage/morphology/_max_tree.so
${PYSITELIB}/skimage/morphology/_skeletonize.py
${PYSITELIB}/skimage/morphology/_skeletonize.pyc
${PYSITELIB}/skimage/morphology/_skeletonize.pyo
${PYSITELIB}/skimage/morphology/_skeletonize_3d.py
${PYSITELIB}/skimage/morphology/_skeletonize_3d.pyc
${PYSITELIB}/skimage/morphology/_skeletonize_3d.pyo
${PYSITELIB}/skimage/morphology/_skeletonize_3d_cy.so
${PYSITELIB}/skimage/morphology/_skeletonize_cy.so
${PYSITELIB}/skimage/morphology/_util.py
${PYSITELIB}/skimage/morphology/_util.pyc
${PYSITELIB}/skimage/morphology/_util.pyo
${PYSITELIB}/skimage/morphology/_watershed.so
${PYSITELIB}/skimage/morphology/binary.py
${PYSITELIB}/skimage/morphology/binary.pyc
${PYSITELIB}/skimage/morphology/binary.pyo
${PYSITELIB}/skimage/morphology/convex_hull.py
${PYSITELIB}/skimage/morphology/convex_hull.pyc
${PYSITELIB}/skimage/morphology/convex_hull.pyo
${PYSITELIB}/skimage/morphology/extrema.py
${PYSITELIB}/skimage/morphology/extrema.pyc
${PYSITELIB}/skimage/morphology/extrema.pyo
${PYSITELIB}/skimage/morphology/grey.py
${PYSITELIB}/skimage/morphology/grey.pyc
${PYSITELIB}/skimage/morphology/grey.pyo
${PYSITELIB}/skimage/morphology/greyreconstruct.py
${PYSITELIB}/skimage/morphology/greyreconstruct.pyc
${PYSITELIB}/skimage/morphology/greyreconstruct.pyo
${PYSITELIB}/skimage/morphology/max_tree.py
${PYSITELIB}/skimage/morphology/max_tree.pyc
${PYSITELIB}/skimage/morphology/max_tree.pyo
${PYSITELIB}/skimage/morphology/misc.py
${PYSITELIB}/skimage/morphology/misc.pyc
${PYSITELIB}/skimage/morphology/misc.pyo
${PYSITELIB}/skimage/morphology/selem.py
${PYSITELIB}/skimage/morphology/selem.pyc
${PYSITELIB}/skimage/morphology/selem.pyo
${PYSITELIB}/skimage/morphology/setup.py
${PYSITELIB}/skimage/morphology/setup.pyc
${PYSITELIB}/skimage/morphology/setup.pyo
${PYSITELIB}/skimage/morphology/tests/__init__.py
${PYSITELIB}/skimage/morphology/tests/__init__.pyc
${PYSITELIB}/skimage/morphology/tests/__init__.pyo
${PYSITELIB}/skimage/morphology/tests/test_binary.py
${PYSITELIB}/skimage/morphology/tests/test_binary.pyc
${PYSITELIB}/skimage/morphology/tests/test_binary.pyo
${PYSITELIB}/skimage/morphology/tests/test_ccomp.py
${PYSITELIB}/skimage/morphology/tests/test_ccomp.pyc
${PYSITELIB}/skimage/morphology/tests/test_ccomp.pyo
${PYSITELIB}/skimage/morphology/tests/test_convex_hull.py
${PYSITELIB}/skimage/morphology/tests/test_convex_hull.pyc
${PYSITELIB}/skimage/morphology/tests/test_convex_hull.pyo
${PYSITELIB}/skimage/morphology/tests/test_extrema.py
${PYSITELIB}/skimage/morphology/tests/test_extrema.pyc
${PYSITELIB}/skimage/morphology/tests/test_extrema.pyo
${PYSITELIB}/skimage/morphology/tests/test_flood_fill.py
${PYSITELIB}/skimage/morphology/tests/test_flood_fill.pyc
${PYSITELIB}/skimage/morphology/tests/test_flood_fill.pyo
${PYSITELIB}/skimage/morphology/tests/test_grey.py
${PYSITELIB}/skimage/morphology/tests/test_grey.pyc
${PYSITELIB}/skimage/morphology/tests/test_grey.pyo
${PYSITELIB}/skimage/morphology/tests/test_max_tree.py
${PYSITELIB}/skimage/morphology/tests/test_max_tree.pyc
${PYSITELIB}/skimage/morphology/tests/test_max_tree.pyo
${PYSITELIB}/skimage/morphology/tests/test_misc.py
${PYSITELIB}/skimage/morphology/tests/test_misc.pyc
${PYSITELIB}/skimage/morphology/tests/test_misc.pyo
${PYSITELIB}/skimage/morphology/tests/test_reconstruction.py
${PYSITELIB}/skimage/morphology/tests/test_reconstruction.pyc
${PYSITELIB}/skimage/morphology/tests/test_reconstruction.pyo
${PYSITELIB}/skimage/morphology/tests/test_selem.py
${PYSITELIB}/skimage/morphology/tests/test_selem.pyc
${PYSITELIB}/skimage/morphology/tests/test_selem.pyo
${PYSITELIB}/skimage/morphology/tests/test_skeletonize.py
${PYSITELIB}/skimage/morphology/tests/test_skeletonize.pyc
${PYSITELIB}/skimage/morphology/tests/test_skeletonize.pyo
${PYSITELIB}/skimage/morphology/tests/test_skeletonize_3d.py
${PYSITELIB}/skimage/morphology/tests/test_skeletonize_3d.pyc
${PYSITELIB}/skimage/morphology/tests/test_skeletonize_3d.pyo
${PYSITELIB}/skimage/morphology/tests/test_watershed.py
${PYSITELIB}/skimage/morphology/tests/test_watershed.pyc
${PYSITELIB}/skimage/morphology/tests/test_watershed.pyo
${PYSITELIB}/skimage/morphology/watershed.py
${PYSITELIB}/skimage/morphology/watershed.pyc
${PYSITELIB}/skimage/morphology/watershed.pyo
${PYSITELIB}/skimage/novice/__init__.py
${PYSITELIB}/skimage/novice/__init__.pyc
${PYSITELIB}/skimage/novice/__init__.pyo
${PYSITELIB}/skimage/novice/_novice.py
${PYSITELIB}/skimage/novice/_novice.pyc
${PYSITELIB}/skimage/novice/_novice.pyo
${PYSITELIB}/skimage/novice/tests/__init__.py
${PYSITELIB}/skimage/novice/tests/__init__.pyc
${PYSITELIB}/skimage/novice/tests/__init__.pyo
${PYSITELIB}/skimage/novice/tests/test_novice.py
${PYSITELIB}/skimage/novice/tests/test_novice.pyc
${PYSITELIB}/skimage/novice/tests/test_novice.pyo
${PYSITELIB}/skimage/restoration/__init__.py
${PYSITELIB}/skimage/restoration/__init__.pyc
${PYSITELIB}/skimage/restoration/__init__.pyo
${PYSITELIB}/skimage/restoration/_cycle_spin.py
${PYSITELIB}/skimage/restoration/_cycle_spin.pyc
${PYSITELIB}/skimage/restoration/_cycle_spin.pyo
${PYSITELIB}/skimage/restoration/_denoise.py
${PYSITELIB}/skimage/restoration/_denoise.pyc
${PYSITELIB}/skimage/restoration/_denoise.pyo
${PYSITELIB}/skimage/restoration/_denoise_cy.so
${PYSITELIB}/skimage/restoration/_nl_means_denoising.so
${PYSITELIB}/skimage/restoration/_unwrap_1d.so
${PYSITELIB}/skimage/restoration/_unwrap_2d.so
${PYSITELIB}/skimage/restoration/_unwrap_3d.so
${PYSITELIB}/skimage/restoration/deconvolution.py
${PYSITELIB}/skimage/restoration/deconvolution.pyc
${PYSITELIB}/skimage/restoration/deconvolution.pyo
${PYSITELIB}/skimage/restoration/inpaint.py
${PYSITELIB}/skimage/restoration/inpaint.pyc
${PYSITELIB}/skimage/restoration/inpaint.pyo
${PYSITELIB}/skimage/restoration/non_local_means.py
${PYSITELIB}/skimage/restoration/non_local_means.pyc
${PYSITELIB}/skimage/restoration/non_local_means.pyo
${PYSITELIB}/skimage/restoration/setup.py
${PYSITELIB}/skimage/restoration/setup.pyc
${PYSITELIB}/skimage/restoration/setup.pyo
${PYSITELIB}/skimage/restoration/tests/__init__.py
${PYSITELIB}/skimage/restoration/tests/__init__.pyc
${PYSITELIB}/skimage/restoration/tests/__init__.pyo
${PYSITELIB}/skimage/restoration/tests/camera_rl.npy
${PYSITELIB}/skimage/restoration/tests/camera_unsup.npy
${PYSITELIB}/skimage/restoration/tests/camera_unsup2.npy
${PYSITELIB}/skimage/restoration/tests/camera_wiener.npy
${PYSITELIB}/skimage/restoration/tests/test_denoise.py
${PYSITELIB}/skimage/restoration/tests/test_denoise.pyc
${PYSITELIB}/skimage/restoration/tests/test_denoise.pyo
${PYSITELIB}/skimage/restoration/tests/test_inpaint.py
${PYSITELIB}/skimage/restoration/tests/test_inpaint.pyc
${PYSITELIB}/skimage/restoration/tests/test_inpaint.pyo
${PYSITELIB}/skimage/restoration/tests/test_restoration.py
${PYSITELIB}/skimage/restoration/tests/test_restoration.pyc
${PYSITELIB}/skimage/restoration/tests/test_restoration.pyo
${PYSITELIB}/skimage/restoration/tests/test_unwrap.py
${PYSITELIB}/skimage/restoration/tests/test_unwrap.pyc
${PYSITELIB}/skimage/restoration/tests/test_unwrap.pyo
${PYSITELIB}/skimage/restoration/uft.py
${PYSITELIB}/skimage/restoration/uft.pyc
${PYSITELIB}/skimage/restoration/uft.pyo
${PYSITELIB}/skimage/restoration/unwrap.py
${PYSITELIB}/skimage/restoration/unwrap.pyc
${PYSITELIB}/skimage/restoration/unwrap.pyo
${PYSITELIB}/skimage/scripts/__init__.py
${PYSITELIB}/skimage/scripts/__init__.pyc
${PYSITELIB}/skimage/scripts/__init__.pyo
${PYSITELIB}/skimage/scripts/skivi.py
${PYSITELIB}/skimage/scripts/skivi.pyc
${PYSITELIB}/skimage/scripts/skivi.pyo
${PYSITELIB}/skimage/segmentation/__init__.py
${PYSITELIB}/skimage/segmentation/__init__.pyc
${PYSITELIB}/skimage/segmentation/__init__.pyo
${PYSITELIB}/skimage/segmentation/_chan_vese.py
${PYSITELIB}/skimage/segmentation/_chan_vese.pyc
${PYSITELIB}/skimage/segmentation/_chan_vese.pyo
${PYSITELIB}/skimage/segmentation/_clear_border.py
${PYSITELIB}/skimage/segmentation/_clear_border.pyc
${PYSITELIB}/skimage/segmentation/_clear_border.pyo
${PYSITELIB}/skimage/segmentation/_felzenszwalb.py
${PYSITELIB}/skimage/segmentation/_felzenszwalb.pyc
${PYSITELIB}/skimage/segmentation/_felzenszwalb.pyo
${PYSITELIB}/skimage/segmentation/_felzenszwalb_cy.so
${PYSITELIB}/skimage/segmentation/_join.py
${PYSITELIB}/skimage/segmentation/_join.pyc
${PYSITELIB}/skimage/segmentation/_join.pyo
${PYSITELIB}/skimage/segmentation/_quickshift.py
${PYSITELIB}/skimage/segmentation/_quickshift.pyc
${PYSITELIB}/skimage/segmentation/_quickshift.pyo
${PYSITELIB}/skimage/segmentation/_quickshift_cy.so
${PYSITELIB}/skimage/segmentation/_slic.so
${PYSITELIB}/skimage/segmentation/active_contour_model.py
${PYSITELIB}/skimage/segmentation/active_contour_model.pyc
${PYSITELIB}/skimage/segmentation/active_contour_model.pyo
${PYSITELIB}/skimage/segmentation/boundaries.py
${PYSITELIB}/skimage/segmentation/boundaries.pyc
${PYSITELIB}/skimage/segmentation/boundaries.pyo
${PYSITELIB}/skimage/segmentation/morphsnakes.py
${PYSITELIB}/skimage/segmentation/morphsnakes.pyc
${PYSITELIB}/skimage/segmentation/morphsnakes.pyo
${PYSITELIB}/skimage/segmentation/random_walker_segmentation.py
${PYSITELIB}/skimage/segmentation/random_walker_segmentation.pyc
${PYSITELIB}/skimage/segmentation/random_walker_segmentation.pyo
${PYSITELIB}/skimage/segmentation/setup.py
${PYSITELIB}/skimage/segmentation/setup.pyc
${PYSITELIB}/skimage/segmentation/setup.pyo
${PYSITELIB}/skimage/segmentation/slic_superpixels.py
${PYSITELIB}/skimage/segmentation/slic_superpixels.pyc
${PYSITELIB}/skimage/segmentation/slic_superpixels.pyo
${PYSITELIB}/skimage/segmentation/tests/__init__.py
${PYSITELIB}/skimage/segmentation/tests/__init__.pyc
${PYSITELIB}/skimage/segmentation/tests/__init__.pyo
${PYSITELIB}/skimage/segmentation/tests/test_active_contour_model.py
${PYSITELIB}/skimage/segmentation/tests/test_active_contour_model.pyc
${PYSITELIB}/skimage/segmentation/tests/test_active_contour_model.pyo
${PYSITELIB}/skimage/segmentation/tests/test_boundaries.py
${PYSITELIB}/skimage/segmentation/tests/test_boundaries.pyc
${PYSITELIB}/skimage/segmentation/tests/test_boundaries.pyo
${PYSITELIB}/skimage/segmentation/tests/test_chan_vese.py
${PYSITELIB}/skimage/segmentation/tests/test_chan_vese.pyc
${PYSITELIB}/skimage/segmentation/tests/test_chan_vese.pyo
${PYSITELIB}/skimage/segmentation/tests/test_clear_border.py
${PYSITELIB}/skimage/segmentation/tests/test_clear_border.pyc
${PYSITELIB}/skimage/segmentation/tests/test_clear_border.pyo
${PYSITELIB}/skimage/segmentation/tests/test_felzenszwalb.py
${PYSITELIB}/skimage/segmentation/tests/test_felzenszwalb.pyc
${PYSITELIB}/skimage/segmentation/tests/test_felzenszwalb.pyo
${PYSITELIB}/skimage/segmentation/tests/test_join.py
${PYSITELIB}/skimage/segmentation/tests/test_join.pyc
${PYSITELIB}/skimage/segmentation/tests/test_join.pyo
${PYSITELIB}/skimage/segmentation/tests/test_morphsnakes.py
${PYSITELIB}/skimage/segmentation/tests/test_morphsnakes.pyc
${PYSITELIB}/skimage/segmentation/tests/test_morphsnakes.pyo
${PYSITELIB}/skimage/segmentation/tests/test_quickshift.py
${PYSITELIB}/skimage/segmentation/tests/test_quickshift.pyc
${PYSITELIB}/skimage/segmentation/tests/test_quickshift.pyo
${PYSITELIB}/skimage/segmentation/tests/test_random_walker.py
${PYSITELIB}/skimage/segmentation/tests/test_random_walker.pyc
${PYSITELIB}/skimage/segmentation/tests/test_random_walker.pyo
${PYSITELIB}/skimage/segmentation/tests/test_slic.py
${PYSITELIB}/skimage/segmentation/tests/test_slic.pyc
${PYSITELIB}/skimage/segmentation/tests/test_slic.pyo
${PYSITELIB}/skimage/setup.py
${PYSITELIB}/skimage/setup.pyc
${PYSITELIB}/skimage/setup.pyo
${PYSITELIB}/skimage/transform/__init__.py
${PYSITELIB}/skimage/transform/__init__.pyc
${PYSITELIB}/skimage/transform/__init__.pyo
${PYSITELIB}/skimage/transform/_geometric.py
${PYSITELIB}/skimage/transform/_geometric.pyc
${PYSITELIB}/skimage/transform/_geometric.pyo
${PYSITELIB}/skimage/transform/_hough_transform.so
${PYSITELIB}/skimage/transform/_radon_transform.so
${PYSITELIB}/skimage/transform/_warps.py
${PYSITELIB}/skimage/transform/_warps.pyc
${PYSITELIB}/skimage/transform/_warps.pyo
${PYSITELIB}/skimage/transform/_warps_cy.so
${PYSITELIB}/skimage/transform/finite_radon_transform.py
${PYSITELIB}/skimage/transform/finite_radon_transform.pyc
${PYSITELIB}/skimage/transform/finite_radon_transform.pyo
${PYSITELIB}/skimage/transform/histogram_matching.py
${PYSITELIB}/skimage/transform/histogram_matching.pyc
${PYSITELIB}/skimage/transform/histogram_matching.pyo
${PYSITELIB}/skimage/transform/hough_transform.py
${PYSITELIB}/skimage/transform/hough_transform.pyc
${PYSITELIB}/skimage/transform/hough_transform.pyo
${PYSITELIB}/skimage/transform/integral.py
${PYSITELIB}/skimage/transform/integral.pyc
${PYSITELIB}/skimage/transform/integral.pyo
${PYSITELIB}/skimage/transform/pyramids.py
${PYSITELIB}/skimage/transform/pyramids.pyc
${PYSITELIB}/skimage/transform/pyramids.pyo
${PYSITELIB}/skimage/transform/radon_transform.py
${PYSITELIB}/skimage/transform/radon_transform.pyc
${PYSITELIB}/skimage/transform/radon_transform.pyo
${PYSITELIB}/skimage/transform/seam_carving.py
${PYSITELIB}/skimage/transform/seam_carving.pyc
${PYSITELIB}/skimage/transform/seam_carving.pyo
${PYSITELIB}/skimage/transform/setup.py
${PYSITELIB}/skimage/transform/setup.pyc
${PYSITELIB}/skimage/transform/setup.pyo
${PYSITELIB}/skimage/transform/tests/__init__.py
${PYSITELIB}/skimage/transform/tests/__init__.pyc
${PYSITELIB}/skimage/transform/tests/__init__.pyo
${PYSITELIB}/skimage/transform/tests/test_finite_radon_transform.py
${PYSITELIB}/skimage/transform/tests/test_finite_radon_transform.pyc
${PYSITELIB}/skimage/transform/tests/test_finite_radon_transform.pyo
${PYSITELIB}/skimage/transform/tests/test_geometric.py
${PYSITELIB}/skimage/transform/tests/test_geometric.pyc
${PYSITELIB}/skimage/transform/tests/test_geometric.pyo
${PYSITELIB}/skimage/transform/tests/test_histogram_matching.py
${PYSITELIB}/skimage/transform/tests/test_histogram_matching.pyc
${PYSITELIB}/skimage/transform/tests/test_histogram_matching.pyo
${PYSITELIB}/skimage/transform/tests/test_hough_transform.py
${PYSITELIB}/skimage/transform/tests/test_hough_transform.pyc
${PYSITELIB}/skimage/transform/tests/test_hough_transform.pyo
${PYSITELIB}/skimage/transform/tests/test_integral.py
${PYSITELIB}/skimage/transform/tests/test_integral.pyc
${PYSITELIB}/skimage/transform/tests/test_integral.pyo
${PYSITELIB}/skimage/transform/tests/test_pyramids.py
${PYSITELIB}/skimage/transform/tests/test_pyramids.pyc
${PYSITELIB}/skimage/transform/tests/test_pyramids.pyo
${PYSITELIB}/skimage/transform/tests/test_radon_transform.py
${PYSITELIB}/skimage/transform/tests/test_radon_transform.pyc
${PYSITELIB}/skimage/transform/tests/test_radon_transform.pyo
${PYSITELIB}/skimage/transform/tests/test_seam_carving.py
${PYSITELIB}/skimage/transform/tests/test_seam_carving.pyc
${PYSITELIB}/skimage/transform/tests/test_seam_carving.pyo
${PYSITELIB}/skimage/transform/tests/test_warps.py
${PYSITELIB}/skimage/transform/tests/test_warps.pyc
${PYSITELIB}/skimage/transform/tests/test_warps.pyo
${PYSITELIB}/skimage/util/__init__.py
${PYSITELIB}/skimage/util/__init__.pyc
${PYSITELIB}/skimage/util/__init__.pyo
${PYSITELIB}/skimage/util/_invert.py
${PYSITELIB}/skimage/util/_invert.pyc
${PYSITELIB}/skimage/util/_invert.pyo
${PYSITELIB}/skimage/util/_montage.py
${PYSITELIB}/skimage/util/_montage.pyc
${PYSITELIB}/skimage/util/_montage.pyo
${PYSITELIB}/skimage/util/_regular_grid.py
${PYSITELIB}/skimage/util/_regular_grid.pyc
${PYSITELIB}/skimage/util/_regular_grid.pyo
${PYSITELIB}/skimage/util/apply_parallel.py
${PYSITELIB}/skimage/util/apply_parallel.pyc
${PYSITELIB}/skimage/util/apply_parallel.pyo
${PYSITELIB}/skimage/util/arraycrop.py
${PYSITELIB}/skimage/util/arraycrop.pyc
${PYSITELIB}/skimage/util/arraycrop.pyo
${PYSITELIB}/skimage/util/dtype.py
${PYSITELIB}/skimage/util/dtype.pyc
${PYSITELIB}/skimage/util/dtype.pyo
${PYSITELIB}/skimage/util/lookfor.py
${PYSITELIB}/skimage/util/lookfor.pyc
${PYSITELIB}/skimage/util/lookfor.pyo
${PYSITELIB}/skimage/util/noise.py
${PYSITELIB}/skimage/util/noise.pyc
${PYSITELIB}/skimage/util/noise.pyo
${PYSITELIB}/skimage/util/shape.py
${PYSITELIB}/skimage/util/shape.pyc
${PYSITELIB}/skimage/util/shape.pyo
${PYSITELIB}/skimage/util/tests/__init__.py
${PYSITELIB}/skimage/util/tests/__init__.pyc
${PYSITELIB}/skimage/util/tests/__init__.pyo
${PYSITELIB}/skimage/util/tests/test_apply_parallel.py
${PYSITELIB}/skimage/util/tests/test_apply_parallel.pyc
${PYSITELIB}/skimage/util/tests/test_apply_parallel.pyo
${PYSITELIB}/skimage/util/tests/test_arraycrop.py
${PYSITELIB}/skimage/util/tests/test_arraycrop.pyc
${PYSITELIB}/skimage/util/tests/test_arraycrop.pyo
${PYSITELIB}/skimage/util/tests/test_arraypad.py
${PYSITELIB}/skimage/util/tests/test_arraypad.pyc
${PYSITELIB}/skimage/util/tests/test_arraypad.pyo
${PYSITELIB}/skimage/util/tests/test_dtype.py
${PYSITELIB}/skimage/util/tests/test_dtype.pyc
${PYSITELIB}/skimage/util/tests/test_dtype.pyo
${PYSITELIB}/skimage/util/tests/test_invert.py
${PYSITELIB}/skimage/util/tests/test_invert.pyc
${PYSITELIB}/skimage/util/tests/test_invert.pyo
${PYSITELIB}/skimage/util/tests/test_montage.py
${PYSITELIB}/skimage/util/tests/test_montage.pyc
${PYSITELIB}/skimage/util/tests/test_montage.pyo
${PYSITELIB}/skimage/util/tests/test_random_noise.py
${PYSITELIB}/skimage/util/tests/test_random_noise.pyc
${PYSITELIB}/skimage/util/tests/test_random_noise.pyo
${PYSITELIB}/skimage/util/tests/test_regular_grid.py
${PYSITELIB}/skimage/util/tests/test_regular_grid.pyc
${PYSITELIB}/skimage/util/tests/test_regular_grid.pyo
${PYSITELIB}/skimage/util/tests/test_shape.py
${PYSITELIB}/skimage/util/tests/test_shape.pyc
${PYSITELIB}/skimage/util/tests/test_shape.pyo
${PYSITELIB}/skimage/util/tests/test_unique_rows.py
${PYSITELIB}/skimage/util/tests/test_unique_rows.pyc
${PYSITELIB}/skimage/util/tests/test_unique_rows.pyo
${PYSITELIB}/skimage/util/unique.py
${PYSITELIB}/skimage/util/unique.pyc
${PYSITELIB}/skimage/util/unique.pyo
${PYSITELIB}/skimage/viewer/__init__.py
${PYSITELIB}/skimage/viewer/__init__.pyc
${PYSITELIB}/skimage/viewer/__init__.pyo
${PYSITELIB}/skimage/viewer/canvastools/__init__.py
${PYSITELIB}/skimage/viewer/canvastools/__init__.pyc
${PYSITELIB}/skimage/viewer/canvastools/__init__.pyo
${PYSITELIB}/skimage/viewer/canvastools/base.py
${PYSITELIB}/skimage/viewer/canvastools/base.pyc
${PYSITELIB}/skimage/viewer/canvastools/base.pyo
${PYSITELIB}/skimage/viewer/canvastools/linetool.py
${PYSITELIB}/skimage/viewer/canvastools/linetool.pyc
${PYSITELIB}/skimage/viewer/canvastools/linetool.pyo
${PYSITELIB}/skimage/viewer/canvastools/painttool.py
${PYSITELIB}/skimage/viewer/canvastools/painttool.pyc
${PYSITELIB}/skimage/viewer/canvastools/painttool.pyo
${PYSITELIB}/skimage/viewer/canvastools/recttool.py
${PYSITELIB}/skimage/viewer/canvastools/recttool.pyc
${PYSITELIB}/skimage/viewer/canvastools/recttool.pyo
${PYSITELIB}/skimage/viewer/plugins/__init__.py
${PYSITELIB}/skimage/viewer/plugins/__init__.pyc
${PYSITELIB}/skimage/viewer/plugins/__init__.pyo
${PYSITELIB}/skimage/viewer/plugins/base.py
${PYSITELIB}/skimage/viewer/plugins/base.pyc
${PYSITELIB}/skimage/viewer/plugins/base.pyo
${PYSITELIB}/skimage/viewer/plugins/canny.py
${PYSITELIB}/skimage/viewer/plugins/canny.pyc
${PYSITELIB}/skimage/viewer/plugins/canny.pyo
${PYSITELIB}/skimage/viewer/plugins/color_histogram.py
${PYSITELIB}/skimage/viewer/plugins/color_histogram.pyc
${PYSITELIB}/skimage/viewer/plugins/color_histogram.pyo
${PYSITELIB}/skimage/viewer/plugins/crop.py
${PYSITELIB}/skimage/viewer/plugins/crop.pyc
${PYSITELIB}/skimage/viewer/plugins/crop.pyo
${PYSITELIB}/skimage/viewer/plugins/labelplugin.py
${PYSITELIB}/skimage/viewer/plugins/labelplugin.pyc
${PYSITELIB}/skimage/viewer/plugins/labelplugin.pyo
${PYSITELIB}/skimage/viewer/plugins/lineprofile.py
${PYSITELIB}/skimage/viewer/plugins/lineprofile.pyc
${PYSITELIB}/skimage/viewer/plugins/lineprofile.pyo
${PYSITELIB}/skimage/viewer/plugins/measure.py
${PYSITELIB}/skimage/viewer/plugins/measure.pyc
${PYSITELIB}/skimage/viewer/plugins/measure.pyo
${PYSITELIB}/skimage/viewer/plugins/overlayplugin.py
${PYSITELIB}/skimage/viewer/plugins/overlayplugin.pyc
${PYSITELIB}/skimage/viewer/plugins/overlayplugin.pyo
${PYSITELIB}/skimage/viewer/plugins/plotplugin.py
${PYSITELIB}/skimage/viewer/plugins/plotplugin.pyc
${PYSITELIB}/skimage/viewer/plugins/plotplugin.pyo
${PYSITELIB}/skimage/viewer/qt.py
${PYSITELIB}/skimage/viewer/qt.pyc
${PYSITELIB}/skimage/viewer/qt.pyo
${PYSITELIB}/skimage/viewer/tests/__init__.py
${PYSITELIB}/skimage/viewer/tests/__init__.pyc
${PYSITELIB}/skimage/viewer/tests/__init__.pyo
${PYSITELIB}/skimage/viewer/tests/test_plugins.py
${PYSITELIB}/skimage/viewer/tests/test_plugins.pyc
${PYSITELIB}/skimage/viewer/tests/test_plugins.pyo
${PYSITELIB}/skimage/viewer/tests/test_tools.py
${PYSITELIB}/skimage/viewer/tests/test_tools.pyc
${PYSITELIB}/skimage/viewer/tests/test_tools.pyo
${PYSITELIB}/skimage/viewer/tests/test_utils.py
${PYSITELIB}/skimage/viewer/tests/test_utils.pyc
${PYSITELIB}/skimage/viewer/tests/test_utils.pyo
${PYSITELIB}/skimage/viewer/tests/test_viewer.py
${PYSITELIB}/skimage/viewer/tests/test_viewer.pyc
${PYSITELIB}/skimage/viewer/tests/test_viewer.pyo
${PYSITELIB}/skimage/viewer/tests/test_widgets.py
${PYSITELIB}/skimage/viewer/tests/test_widgets.pyc
${PYSITELIB}/skimage/viewer/tests/test_widgets.pyo
${PYSITELIB}/skimage/viewer/utils/__init__.py
${PYSITELIB}/skimage/viewer/utils/__init__.pyc
${PYSITELIB}/skimage/viewer/utils/__init__.pyo
${PYSITELIB}/skimage/viewer/utils/canvas.py
${PYSITELIB}/skimage/viewer/utils/canvas.pyc
${PYSITELIB}/skimage/viewer/utils/canvas.pyo
${PYSITELIB}/skimage/viewer/utils/core.py
${PYSITELIB}/skimage/viewer/utils/core.pyc
${PYSITELIB}/skimage/viewer/utils/core.pyo
${PYSITELIB}/skimage/viewer/utils/dialogs.py
${PYSITELIB}/skimage/viewer/utils/dialogs.pyc
${PYSITELIB}/skimage/viewer/utils/dialogs.pyo
${PYSITELIB}/skimage/viewer/viewers/__init__.py
${PYSITELIB}/skimage/viewer/viewers/__init__.pyc
${PYSITELIB}/skimage/viewer/viewers/__init__.pyo
${PYSITELIB}/skimage/viewer/viewers/core.py
${PYSITELIB}/skimage/viewer/viewers/core.pyc
${PYSITELIB}/skimage/viewer/viewers/core.pyo
${PYSITELIB}/skimage/viewer/widgets/__init__.py
${PYSITELIB}/skimage/viewer/widgets/__init__.pyc
${PYSITELIB}/skimage/viewer/widgets/__init__.pyo
${PYSITELIB}/skimage/viewer/widgets/core.py
${PYSITELIB}/skimage/viewer/widgets/core.pyc
${PYSITELIB}/skimage/viewer/widgets/core.pyo
${PYSITELIB}/skimage/viewer/widgets/history.py
${PYSITELIB}/skimage/viewer/widgets/history.pyc
${PYSITELIB}/skimage/viewer/widgets/history.pyo