-
Notifications
You must be signed in to change notification settings - Fork 2
/
visionnet.xml
6499 lines (6499 loc) · 319 KB
/
visionnet.xml
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
<?xml version="1.0"?>
<doc>
<assembly>
<name>VisionNET</name>
</assembly>
<members>
<member name="T:VisionNET.GrayscaleImage">
<remarks>
A grayscale image, with real-valued pixels.
</remarks>
</member>
<member name="T:VisionNET.IMultichannelImage`1">
<remarks>
Interface for images with multiple color/data channels.
</remarks>
<typeparam name="T">Underlying type of the image</typeparam>
</member>
<member name="T:VisionNET.IArrayHandler`1">
<remarks>
Interface defining an array handler. This is a class which is provides several methods for handling large three-dimensional arrays which are
useful for computer vision.
</remarks>
<typeparam name="T">Any type, though ideally one on which arithmetic operators are defined.</typeparam>
</member>
<member name="M:VisionNET.IArrayHandler`1.Clear">
<summary>
Clears all data from the array.
</summary>
</member>
<member name="M:VisionNET.IArrayHandler`1.SetData(`0[0:,0:,0:])">
<summary>
Sets the data of the array to <paramref name="data"/>. This new array will replace the current one. No copy is created.
</summary>
<param name="data">Array to handle</param>
</member>
<member name="M:VisionNET.IArrayHandler`1.SetDimensions(System.Int32,System.Int32,System.Int32)">
<summary>
Sets the dimensions of the underlying array. The resulting new array will replace the old array completely, no data will be copied over.
</summary>
<param name="rows">Number of desired rows in the new array.</param>
<param name="columns">Number of desired columns in the new array.</param>
<param name="channels">Number of desired channels in the new array.</param>
</member>
<member name="M:VisionNET.IArrayHandler`1.ComputeRectangleSum(System.Int32,System.Int32,System.Int32,VisionNET.Rectangle)">
<summary>
Computes a sum of the values in the array starting at (<paramref name="row"/>, <paramref name="column"/>) in <paramref name="channel" />
in a rectangle described by the offset and size in <paramref name="rect"/>.
</summary>
<param name="row">Reference row</param>
<param name="column">Reference column</param>
<param name="channel">Channel to draw values from</param>
<param name="rect">Offset and size of the rectangle</param>
<returns>The sum of all values in the rectangle</returns>
</member>
<member name="M:VisionNET.IArrayHandler`1.ComputeRectangleSum(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Computes a sum of the values in the array within the rectangle starting at (<paramref name="startRow" />, <paramref name="startColumn"/>) in <paramref name="channel"/>
with a size of <paramref name="rows"/>x<paramref name="columns"/>.
</summary>
<param name="startRow">Starting row</param>
<param name="startColumn">Starting column</param>
<param name="rows">Number of rows in the rectangle</param>
<param name="columns">Number of columns in the rectangle</param>
<param name="channel">Channel to draw values from</param>
<returns>The sum of all values in the rectangle</returns>
</member>
<member name="M:VisionNET.IArrayHandler`1.ExtractChannel(System.Int32)">
<summary>
Extracts an entire channel from the array.
</summary>
<param name="channel">Channel to extract</param>
<returns>Extracted channel</returns>
</member>
<member name="M:VisionNET.IArrayHandler`1.ExtractRectangle(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Extracts a portion of the array defined by the parameters.
</summary>
<param name="startRow">Starting row</param>
<param name="startColumn">Starting column</param>
<param name="rows">Number of rows in the portion</param>
<param name="columns">Number of columns in the portion</param>
<returns>A portion of the array</returns>
</member>
<member name="P:VisionNET.IArrayHandler`1.Rows">
<summary>
Number of rows in the array.
</summary>
</member>
<member name="P:VisionNET.IArrayHandler`1.Columns">
<summary>
Number of columns in the array.
</summary>
</member>
<member name="P:VisionNET.IArrayHandler`1.Channels">
<summary>
Number of channels in the array.
</summary>
</member>
<member name="P:VisionNET.IArrayHandler`1.IsIntegral">
<summary>
Sets whether this array is an integral array. This property influences how the rectangle sum will be computed.
</summary>
</member>
<member name="P:VisionNET.IArrayHandler`1.RawArray">
<summary>
The underlying array. Breaks capsulation to allow operations using pointer arithmetic.
</summary>
</member>
<member name="P:VisionNET.IArrayHandler`1.Item(System.Int32,System.Int32,System.Int32)">
<summary>
Indexes the underlying array.
</summary>
<param name="row">Desired row</param>
<param name="column">Desired column</param>
<param name="channel">Desired column</param>
<returns>Value at (<paramref name="row"/>, <paramref name="column"/>, <paramref name="channel"/>) within the array.</returns>
</member>
<member name="M:VisionNET.IMultichannelImage`1.ToBitmap">
<summary>
Converts this image to a bitmap.
</summary>
<returns>A bitmap version of the image</returns>
</member>
<member name="P:VisionNET.IMultichannelImage`1.Width">
<summary>
Width of the image (equivalent to <see cref="P:Columns" />)
</summary>
</member>
<member name="P:VisionNET.IMultichannelImage`1.Height">
<summary>
Height of the image (equivalment to <see cref="P:Rows" />)
</summary>
</member>
<member name="P:VisionNET.IMultichannelImage`1.ID">
<summary>
ID for this image.
</summary>
</member>
<member name="M:VisionNET.GrayscaleImage.#ctor">
<summary>
Constructor. Creates an empty image.
</summary>
</member>
<member name="M:VisionNET.GrayscaleImage.#ctor(System.Single[0:,0:])">
<summary>
Constructor.
</summary>
<param name="values">Values to use for populating this image</param>
</member>
<member name="M:VisionNET.GrayscaleImage.#ctor(System.String)">
<summary>
Constructor.
</summary>
<param name="filename">Path to the source image</param>
</member>
<member name="M:VisionNET.GrayscaleImage.#ctor(System.Windows.Media.Imaging.BitmapSource)">
<summary>
Constructor.
</summary>
<param name="bitmap">Source image</param>
</member>
<member name="M:VisionNET.GrayscaleImage.#ctor(VisionNET.RGBImage)">
<summary>
Constructor.
</summary>
<param name="image">Source image</param>
</member>
<member name="M:VisionNET.GrayscaleImage.#ctor(System.Int32,System.Int32)">
<summary>
Constructor.
</summary>
<param name="rows">Number of rows</param>
<param name="columns">Number of columns</param>
</member>
<member name="M:VisionNET.GrayscaleImage.Save(System.String)">
<summary>
Saves this image to the provided filename, detecting the correct file format from the extension.
</summary>
<param name="filename">The path to the destination image</param>
</member>
<member name="M:VisionNET.GrayscaleImage.ToBitmap">
<summary>
Returns a Bitmap version of this image using the computed minimum and maximum values.
</summary>
<returns>A Bitmap representing this image</returns>
</member>
<member name="M:VisionNET.GrayscaleImage.Normalize">
<summary>
Normalize the values in the image to range from 0 to 1.
</summary>
</member>
<member name="M:VisionNET.GrayscaleImage.ToBitmap(System.Single,System.Single)">
<summary>
Returns a Bitmap version of this image.
</summary>
<param name="min">Minimum value, equivalent to a gray value of 0</param>
<param name="max">Maximum value, equivalent to a gray value of 1</param>
<returns>A Bitmap representing this image</returns>
</member>
<member name="M:VisionNET.GrayscaleImage.Save(VisionNET.GrayscaleImage,System.String)">
<summary>
Saves the provided image to file, determining the correct file format from the extension.
</summary>
<param name="image">The image to save</param>
<param name="filename">The path to the destination image</param>
</member>
<member name="M:VisionNET.GrayscaleImage.ComputeRectangleSum(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Computes a sum of the values in the array within the rectangle starting at (<paramref name="startRow" />, <paramref name="startColumn"/>) in <paramref name="channel"/>
with a size of <paramref name="rows"/>x<paramref name="columns"/>.
</summary>
<param name="startRow">Starting row</param>
<param name="startColumn">Starting column</param>
<param name="rows">Number of rows in the rectangle</param>
<param name="columns">Number of columns in the rectangle</param>
<param name="channel">Channel to draw values from</param>
<returns>The sum of all values in the rectangle</returns>
</member>
<member name="M:VisionNET.GrayscaleImage.ComputeRectangleSum(System.Int32,System.Int32,System.Int32,VisionNET.Rectangle)">
<summary>
Computes a sum of the values in the array starting at (<paramref name="row"/>, <paramref name="column"/>) in <paramref name="channel" />
in a rectangle described by the offset and size in <paramref name="rect"/>.
</summary>
<param name="row">Reference row</param>
<param name="column">Reference column</param>
<param name="channel">Channel to draw values from</param>
<param name="rect">Offset and size of the rectangle</param>
<returns>The sum of all values in the rectangle</returns>
</member>
<member name="M:VisionNET.GrayscaleImage.SetData(System.Single[0:,0:,0:])">
<summary>
Sets the data of the array to <paramref name="data"/>. This new array will replace the current one. No copy is created.
</summary>
<param name="data">Array to handle</param>
</member>
<member name="M:VisionNET.GrayscaleImage.SetDimensions(System.Int32,System.Int32,System.Int32)">
<summary>
Sets the dimensions of the underlying array. The resulting new array will replace the old array completely, no data will be copied over.
</summary>
<param name="rows">Number of desired rows in the new array.</param>
<param name="columns">Number of desired columns in the new array.</param>
<param name="channels">Number of desired channels in the new array.</param>
</member>
<member name="M:VisionNET.GrayscaleImage.ExtractRectangle(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Extracts a portion of the array defined by the parameters.
</summary>
<param name="startRow">Starting row</param>
<param name="startColumn">Starting column</param>
<param name="rows">Number of rows in the portion</param>
<param name="columns">Number of columns in the portion</param>
<returns>A portion of the array</returns>
</member>
<member name="M:VisionNET.GrayscaleImage.ExtractChannel(System.Int32)">
<summary>
Extracts an entire channel from the array.
</summary>
<param name="channel">Channel to extract</param>
<returns>Extracted channel</returns>
</member>
<member name="M:VisionNET.GrayscaleImage.Clear">
<summary>
Clears all data from the array.
</summary>
</member>
<member name="P:VisionNET.GrayscaleImage.ID">
<summary>
Label for the image.
</summary>
</member>
<member name="P:VisionNET.GrayscaleImage.Item(System.Int32,System.Int32)">
<summary>
Accesses the value at the specified row and column.
</summary>
<param name="row">The desired row</param>
<param name="column">The desired column</param>
<returns>The value at (row,column)</returns>
</member>
<member name="P:VisionNET.GrayscaleImage.Width">
<summary>
Width of the image (equivalent to <see cref="P:Columns" />)
</summary>
</member>
<member name="P:VisionNET.GrayscaleImage.Height">
<summary>
Height of the image (equivalment to <see cref="P:Rows" />)
</summary>
</member>
<member name="P:VisionNET.GrayscaleImage.Rows">
<summary>
Number of rows in the array.
</summary>
</member>
<member name="P:VisionNET.GrayscaleImage.Columns">
<summary>
Number of columns in the array.
</summary>
</member>
<member name="P:VisionNET.GrayscaleImage.Channels">
<summary>
Number of channels in the array.
</summary>
</member>
<member name="P:VisionNET.GrayscaleImage.Item(System.Int32,System.Int32,System.Int32)">
<summary>
Indexes the underlying array.
</summary>
<param name="row">Desired row</param>
<param name="column">Desired column</param>
<param name="channel">Desired column</param>
<returns>Value at (<paramref name="row"/>, <paramref name="column"/>, <paramref name="channel"/>) within the array.</returns>
</member>
<member name="P:VisionNET.GrayscaleImage.RawArray">
<summary>
The underlying array. Breaks capsulation to allow operations using pointer arithmetic.
</summary>
</member>
<member name="P:VisionNET.GrayscaleImage.IsIntegral">
<summary>
Sets whether this array is an integral array. This property influences how the rectangle sum will be computed.
</summary>
</member>
<member name="T:VisionNET.DecisionForests.RectangleFeatureFactory">
<remarks>
Feature factory for offset rectangle features. The feature is computed as the sum of values within a rectangle offset from the
test point. These features use integral images for computational efficiency. For details see Textonboost (Shotton et al 2006).
</remarks>
</member>
<member name="T:VisionNET.DecisionForests.IFeatureFactory`1">
<remarks>
Interface for an object which creates other objects that implement <see cref="T:IFeature" />.
</remarks>
<typeparam name="T">Any type, preferably on on which arithmetic operations are defined</typeparam>
</member>
<member name="M:VisionNET.DecisionForests.IFeatureFactory`1.Create">
<summary>
Creates a new feature.
</summary>
<returns>An object which implements <see cref="T:IFeature" /></returns>
</member>
<member name="M:VisionNET.DecisionForests.IFeatureFactory`1.IsProduct(VisionNET.DecisionForests.IFeature{`0})">
<summary>
Returns whether <paramref name="feature"/> is a product of this factory.
</summary>
<param name="feature">Feature to test</param>
<returns>True if it came from this factory, false otherwise.</returns>
</member>
<member name="M:VisionNET.DecisionForests.RectangleFeatureFactory.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Constructor.
</summary>
<param name="boxSize">Size of the box around the test point the factory can sample from.</param>
<param name="numChannels">Number of channels the factory can sample from.</param>
<param name="maxRows">Maximum number of rows in the test rectangle.</param>
<param name="maxColumns">Maximum number of columns in the test rectangle.</param>
</member>
<member name="M:VisionNET.DecisionForests.RectangleFeatureFactory.#ctor">
<summary>
Constructor.
</summary>
</member>
<member name="M:VisionNET.DecisionForests.RectangleFeatureFactory.Create">
<summary>
Creates a new feature.
</summary>
<returns>An object which implements <see cref="T:IFeature" /></returns>
</member>
<member name="M:VisionNET.DecisionForests.RectangleFeatureFactory.IsProduct(VisionNET.DecisionForests.IFeature{System.Single})">
<summary>
Returns whether <paramref name="feature"/> is a product of this factory.
</summary>
<param name="feature">Feature to test</param>
<returns>True if it came from this factory, false otherwise.</returns>
</member>
<member name="P:VisionNET.DecisionForests.RectangleFeatureFactory.BoxSize">
<summary>
Size of the box around the test point the factory can sample from.
</summary>
</member>
<member name="P:VisionNET.DecisionForests.RectangleFeatureFactory.ChannelCount">
<summary>
Number of channels the factory can sample from.
</summary>
</member>
<member name="P:VisionNET.DecisionForests.RectangleFeatureFactory.MaxRows">
<summary>
Maximum number of rows in the test rectangle.
</summary>
</member>
<member name="P:VisionNET.DecisionForests.RectangleFeatureFactory.MaxColumns">
<summary>
Maximum number of columns in the test rectangle.
</summary>
</member>
<member name="T:VisionNET.DecisionForests.IFeature`1">
<remarks>
Interface for a feature used in a decision forest.
</remarks>
<typeparam name="T">Any type, preferably one on which arithmetic operations are defined</typeparam>
</member>
<member name="M:VisionNET.DecisionForests.IFeature`1.Compute(VisionNET.Learning.ImageDataPoint{`0})">
<summary>
Computes the feature for <paramref name="point"/>.
</summary>
<param name="point">Point to use when computing the feature</param>
<returns>The computed feature value</returns>
</member>
<member name="P:VisionNET.DecisionForests.IFeature`1.Name">
<summary>
The name of the feature.
</summary>
</member>
<member name="P:VisionNET.DecisionForests.IFeature`1.Cell0">
<summary>
First cell in the surrounding image used by the feature.
</summary>
</member>
<member name="P:VisionNET.DecisionForests.IFeature`1.Cell1">
<summary>
Second cell in the surrounding image used by the feature.
</summary>
</member>
<member name="T:VisionNET.DecisionForests.LeafImage`1">
<remarks>
An image where each pixel has an array of node metadata associated with where that pixel in the source image was classified in a decision forest.
</remarks>
<typeparam name="T">The type of the source image and the decision forest</typeparam>
</member>
<member name="M:VisionNET.DecisionForests.LeafImage`1.#ctor(System.Int32,System.Int32,System.Int32)">
<summary>
Constructor.
</summary>
<param name="rows">Number of rows in the image</param>
<param name="columns">Number of columns in the image</param>
<param name="trees">Number of trees in the source decision forest</param>
</member>
<member name="M:VisionNET.DecisionForests.LeafImage`1.ComputeDistributionImage">
<summary>
Computes a label distribution at each pixel by combining its node distributions.
</summary>
<returns>Distribution image</returns>
</member>
<member name="M:VisionNET.DecisionForests.LeafImage`1.ComputeHistogram">
<summary>
Computes a tree histogram for the source image from the nodes at each pixel.
</summary>
<returns>A tree histogram for the source image</returns>
</member>
<member name="M:VisionNET.DecisionForests.LeafImage`1.ComputeHistogram(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Computes a tree histogram for a sub-rectangle of the source image defined by the parameters.
</summary>
<param name="startRow">Starting row of the sub-rectangle</param>
<param name="startColumn">Starting column of the sub-rectangle</param>
<param name="rows">Number of rows in the sub-rectangle</param>
<param name="columns">Number of columns in the sub-rectangle</param>
<returns>A tree histogram</returns>
</member>
<member name="M:VisionNET.DecisionForests.LeafImage`1.ToBitmap">
<summary>
Converts this image to a bitmap.
</summary>
<returns>A bitmap version of the image</returns>
</member>
<member name="M:VisionNET.DecisionForests.LeafImage`1.Clear">
<summary>
Clears all data from the array.
</summary>
</member>
<member name="M:VisionNET.DecisionForests.LeafImage`1.SetData(VisionNET.DecisionForests.INodeInfo{`0}[0:,0:,0:])">
<summary>
Sets the data of the array to <paramref name="data"/>. This new array will replace the current one. No copy is created.
</summary>
<param name="data">Array to handle</param>
</member>
<member name="M:VisionNET.DecisionForests.LeafImage`1.SetDimensions(System.Int32,System.Int32,System.Int32)">
<summary>
Sets the dimensions of the underlying array. The resulting new array will replace the old array completely, no data will be copied over.
</summary>
<param name="rows">Number of desired rows in the new array.</param>
<param name="columns">Number of desired columns in the new array.</param>
<param name="channels">Number of desired channels in the new array.</param>
</member>
<member name="M:VisionNET.DecisionForests.LeafImage`1.ComputeRectangleSum(System.Int32,System.Int32,System.Int32,VisionNET.Rectangle)">
<summary>
Computes a sum of the values in the array starting at (<paramref name="row"/>, <paramref name="column"/>) in <paramref name="channel" />
in a rectangle described by the offset and size in <paramref name="rect"/>.
</summary>
<param name="row">Reference row</param>
<param name="column">Reference column</param>
<param name="channel">Channel to draw values from</param>
<param name="rect">Offset and size of the rectangle</param>
<returns>The sum of all values in the rectangle</returns>
</member>
<member name="M:VisionNET.DecisionForests.LeafImage`1.ComputeRectangleSum(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Computes a sum of the values in the array within the rectangle starting at (<paramref name="startRow" />, <paramref name="startColumn"/>) in <paramref name="channel"/>
with a size of <paramref name="rows"/>x<paramref name="columns"/>.
</summary>
<param name="startRow">Starting row</param>
<param name="startColumn">Starting column</param>
<param name="rows">Number of rows in the rectangle</param>
<param name="columns">Number of columns in the rectangle</param>
<param name="channel">Channel to draw values from</param>
<returns>The sum of all values in the rectangle</returns>
</member>
<member name="M:VisionNET.DecisionForests.LeafImage`1.ExtractChannel(System.Int32)">
<summary>
Extracts an entire channel from the array.
</summary>
<param name="channel">Channel to extract</param>
<returns>Extracted channel</returns>
</member>
<member name="M:VisionNET.DecisionForests.LeafImage`1.ExtractRectangle(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Extracts a portion of the array defined by the parameters.
</summary>
<param name="startRow">Starting row</param>
<param name="startColumn">Starting column</param>
<param name="rows">Number of rows in the portion</param>
<param name="columns">Number of columns in the portion</param>
<returns>A portion of the array</returns>
</member>
<member name="P:VisionNET.DecisionForests.LeafImage`1.ID">
<summary>
Label for the image.
</summary>
</member>
<member name="P:VisionNET.DecisionForests.LeafImage`1.Width">
<summary>
Width of the image (equivalent to <see cref="P:Columns" />)
</summary>
</member>
<member name="P:VisionNET.DecisionForests.LeafImage`1.Height">
<summary>
Height of the image (equivalment to <see cref="P:Rows" />)
</summary>
</member>
<member name="P:VisionNET.DecisionForests.LeafImage`1.Rows">
<summary>
Number of rows in the array.
</summary>
</member>
<member name="P:VisionNET.DecisionForests.LeafImage`1.Columns">
<summary>
Number of columns in the array.
</summary>
</member>
<member name="P:VisionNET.DecisionForests.LeafImage`1.Channels">
<summary>
Number of channels in the array.
</summary>
</member>
<member name="P:VisionNET.DecisionForests.LeafImage`1.IsIntegral">
<summary>
Sets whether this array is an integral array. This property influences how the rectangle sum will be computed.
</summary>
</member>
<member name="P:VisionNET.DecisionForests.LeafImage`1.RawArray">
<summary>
The underlying array. Breaks capsulation to allow operations using pointer arithmetic.
</summary>
</member>
<member name="P:VisionNET.DecisionForests.LeafImage`1.Item(System.Int32,System.Int32,System.Int32)">
<summary>
Indexes the underlying array.
</summary>
<param name="row">Desired row</param>
<param name="column">Desired column</param>
<param name="channel">Desired column</param>
<returns>Value at (<paramref name="row"/>, <paramref name="column"/>, <paramref name="channel"/>) within the array.</returns>
</member>
<member name="T:VisionNET.DistanceTransformImage">
<remarks>
Performs the Chamfer distance transform on an input edge image.
</remarks>
</member>
<member name="M:VisionNET.DistanceTransformImage.#ctor">
<summary>
Constructor.
</summary>
</member>
<member name="M:VisionNET.DistanceTransformImage.ToBitmap">
<summary>
Returns a Bitmap version of this image using the computed minimum and maximum values.
</summary>
<returns>A Bitmap representing this image</returns>
</member>
<member name="M:VisionNET.DistanceTransformImage.Compute(VisionNET.EdgeImage)">
<summary>
Computes the distance transform using the Chamfer distance transform using hybrid
city block/chess board distance, which is a close approximation to the true
Euclidean distance.
</summary>
<param name="edges">Edge image</param>
<returns>Distance transform</returns>
</member>
<member name="M:VisionNET.DistanceTransformImage.ComputeRectangleSum(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Computes a sum of the values in the array within the rectangle starting at (<paramref name="startRow" />, <paramref name="startColumn"/>) in <paramref name="channel"/>
with a size of <paramref name="rows"/>x<paramref name="columns"/>.
</summary>
<param name="startRow">Starting row</param>
<param name="startColumn">Starting column</param>
<param name="rows">Number of rows in the rectangle</param>
<param name="columns">Number of columns in the rectangle</param>
<param name="channel">Channel to draw values from</param>
<returns>The sum of all values in the rectangle</returns>
</member>
<member name="M:VisionNET.DistanceTransformImage.ComputeRectangleSum(System.Int32,System.Int32,System.Int32,VisionNET.Rectangle)">
<summary>
Computes a sum of the values in the array starting at (<paramref name="row"/>, <paramref name="column"/>) in <paramref name="channel" />
in a rectangle described by the offset and size in <paramref name="rect"/>.
</summary>
<param name="row">Reference row</param>
<param name="column">Reference column</param>
<param name="channel">Channel to draw values from</param>
<param name="rect">Offset and size of the rectangle</param>
<returns>The sum of all values in the rectangle</returns>
</member>
<member name="M:VisionNET.DistanceTransformImage.SetData(System.Int32[0:,0:,0:])">
<summary>
Sets the data of the array to <paramref name="data"/>. This new array will replace the current one. No copy is created.
</summary>
<param name="data">Array to handle</param>
</member>
<member name="M:VisionNET.DistanceTransformImage.SetDimensions(System.Int32,System.Int32,System.Int32)">
<summary>
Sets the dimensions of the underlying array. The resulting new array will replace the old array completely, no data will be copied over.
</summary>
<param name="rows">Number of desired rows in the new array.</param>
<param name="columns">Number of desired columns in the new array.</param>
<param name="channels">Number of desired channels in the new array.</param>
</member>
<member name="M:VisionNET.DistanceTransformImage.ExtractRectangle(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Extracts a portion of the array defined by the parameters.
</summary>
<param name="startRow">Starting row</param>
<param name="startColumn">Starting column</param>
<param name="rows">Number of rows in the portion</param>
<param name="columns">Number of columns in the portion</param>
<returns>A portion of the array</returns>
</member>
<member name="M:VisionNET.DistanceTransformImage.ExtractChannel(System.Int32)">
<summary>
Extracts an entire channel from the array.
</summary>
<param name="channel">Channel to extract</param>
<returns>Extracted channel</returns>
</member>
<member name="M:VisionNET.DistanceTransformImage.Clear">
<summary>
Clears all data from the array.
</summary>
</member>
<member name="P:VisionNET.DistanceTransformImage.ID">
<summary>
Label for the image.
</summary>
</member>
<member name="P:VisionNET.DistanceTransformImage.Width">
<summary>
Width of the image (equivalent to <see cref="P:Columns" />)
</summary>
</member>
<member name="P:VisionNET.DistanceTransformImage.Height">
<summary>
Height of the image (equivalment to <see cref="P:Rows" />)
</summary>
</member>
<member name="P:VisionNET.DistanceTransformImage.IsIntegral">
<summary>
Sets whether this array is an integral array. This property influences how the rectangle sum will be computed.
</summary>
</member>
<member name="P:VisionNET.DistanceTransformImage.Rows">
<summary>
Number of rows in the array.
</summary>
</member>
<member name="P:VisionNET.DistanceTransformImage.Columns">
<summary>
Number of columns in the array.
</summary>
</member>
<member name="P:VisionNET.DistanceTransformImage.Channels">
<summary>
Number of channels in the array.
</summary>
</member>
<member name="P:VisionNET.DistanceTransformImage.Item(System.Int32,System.Int32,System.Int32)">
<summary>
Indexes the underlying array.
</summary>
<param name="row">Desired row</param>
<param name="column">Desired column</param>
<param name="channel">Desired column</param>
<returns>Value at (<paramref name="row"/>, <paramref name="column"/>, <paramref name="channel"/>) within the array.</returns>
</member>
<member name="P:VisionNET.DistanceTransformImage.RawArray">
<summary>
The underlying array. Breaks capsulation to allow operations using pointer arithmetic.
</summary>
</member>
<member name="T:VisionNET.Learning.ConfusionMatrix">
<remarks>
Encapsulates a confusion matrix.
</remarks>
</member>
<member name="M:VisionNET.Learning.ConfusionMatrix.#ctor(System.Int32)">
<summary>
Constructor.
</summary>
<param name="numLabels">Number of labels in the matrix</param>
</member>
<member name="M:VisionNET.Learning.ConfusionMatrix.IgnoreLabel(System.Int32)">
<summary>
Ignores a particular label in the matrix when computing the accuracies.
</summary>
<param name="label"></param>
</member>
<member name="M:VisionNET.Learning.ConfusionMatrix.ClearIgnoredLabels">
<summary>
Clears ignored labels.
</summary>
</member>
<member name="M:VisionNET.Learning.ConfusionMatrix.Add(System.Int32,System.Int32,System.Single)">
<summary>
Adds a value to the matrix.
</summary>
<param name="trueCategory">The true category</param>
<param name="inferredCategory">The inferred category</param>
<param name="certainty">Certainty of the inferred label</param>
</member>
<member name="M:VisionNET.Learning.ConfusionMatrix.Add(System.Int32,System.Int32)">
<summary>
Adds a value to the matrix.
</summary>
<param name="trueCategory">The true category</param>
<param name="inferredCategory">The inferred category</param>
</member>
<member name="M:VisionNET.Learning.ConfusionMatrix.ComputeRowSum(System.Int32)">
<summary>
Computes the sum for a row.
</summary>
<param name="row">The row to sum</param>
<returns>The row sum</returns>
</member>
<member name="M:VisionNET.Learning.ConfusionMatrix.Write(System.IO.Stream,VisionNET.Learning.ConfusionMatrix)">
<summary>
Writes <paramref name="matrix"/> to <paramref name="stream"/>.
</summary>
<param name="stream">The stream to write to</param>
<param name="matrix">The matrix to write</param>
</member>
<member name="M:VisionNET.Learning.ConfusionMatrix.Read(System.IO.Stream)">
<summary>
Reads a matrix from <paramref name="stream"/>.
</summary>
<param name="stream">The stream to read from</param>
<returns>The matrix</returns>
</member>
<member name="M:VisionNET.Learning.ConfusionMatrix.ToString">
<summary>
Returns a string representation of the matrix.
</summary>
<returns>A string representation of the matrix</returns>
</member>
<member name="P:VisionNET.Learning.ConfusionMatrix.Item(System.Int32,System.Int32)">
<summary>
Indexes the confusion matrix.
</summary>
<param name="trueCategory">True category (the row)</param>
<param name="inferredCategory">Inferred category (the column)</param>
<returns>The value</returns>
</member>
<member name="P:VisionNET.Learning.ConfusionMatrix.LabelCount">
<summary>
Number of labels in the matrix.
</summary>
</member>
<member name="P:VisionNET.Learning.ConfusionMatrix.OverallAccuracy">
<summary>
The overall accuracy of the matrix, computed as the total number of correct pixels divided by the total number of pixels, for all labels.
</summary>
</member>
<member name="P:VisionNET.Learning.ConfusionMatrix.AverageAccuracy">
<summary>
The average accuracy of the matrix, computed as the average of the category accuracies.
</summary>
</member>
<member name="T:VisionNET.GammaDistribution">
<remarks>
Class encapsulating a Gamma distribution.
</remarks>
</member>
<member name="M:VisionNET.GammaDistribution.GammaFunction(System.Double)">
<summary>
Computes the Gamma function for <paramref name="x"/>.
</summary>
<param name="x">Argument value</param>
<returns>Result of the Gamma function for x</returns>
</member>
<member name="M:VisionNET.GammaDistribution.#ctor(System.Double,System.Double)">
<summary>
Constructor.
</summary>
<param name="k">K parameter</param>
<param name="theta">Theta parameter.</param>
</member>
<member name="M:VisionNET.GammaDistribution.Compute(System.Single)">
<summary>
Computes the Gamma distribution for <paramref name="x"/>.
</summary>
<param name="x">The argument</param>
<returns>The Gamma distribution computed at <paramref name="x"/></returns>
</member>
<member name="M:VisionNET.GammaDistribution.Estimate(System.Collections.Generic.List{System.Single})">
<summary>
Estimates a Gamma distribution from the data.
</summary>
<param name="data">Data from which to estimate a distribution</param>
<returns>The estimated distribution</returns>
</member>
<member name="P:VisionNET.GammaDistribution.Mean">
<summary>
Mean of the distribution.
</summary>
</member>
<member name="T:VisionNET.Comparison.TreeHistogram">
<remarks>
A tree histogram is a hierarchical structure, in which each node "contains" in some way the values of the subtree for which it is the root. Thus, each level
is a histogram which desribes the same entity but with a different granularity. This particular implementation does not store the structure, but only a list
of nodes which store within themselves their location within the tree. The reason for this is that this is the more memory-efficient way of storing trees for which
the majority of the bins will be zero, and in which it is necessary to store several trees at once. The unfortunate result of this is that the onus is on the user
to correctly create the nodes.
</remarks>
</member>
<member name="M:VisionNET.Comparison.TreeHistogram.#ctor">
<summary>
Constructor.
</summary>
</member>
<member name="M:VisionNET.Comparison.TreeHistogram.#ctor(System.Collections.Generic.List{VisionNET.Comparison.TreeNode},System.String)">
<summary>
Constructs this histogram from <paramref name="nodes"/> and marks it with <paramref name="id"/>.
</summary>
<param name="nodes">The nodes to use for building the histogram. Must already be populated with their location information.</param>
<param name="id">The ID of this histogram</param>
</member>
<member name="M:VisionNET.Comparison.TreeHistogram.#ctor(System.Collections.Generic.List{VisionNET.Comparison.TreeNode})">
<summary>
Constructs this histogram from <paramref name="nodes" />.
</summary>
<param name="nodes">The nodes to use for building the histogram. Must already be populated with their location information.</param>
</member>
<member name="M:VisionNET.Comparison.TreeHistogram.Contains(VisionNET.Comparison.TreeNode)">
<summary>
Whether this node is already contained within the tree.
</summary>
<param name="node">The node to search for</param>
<returns>Whether this node is present</returns>
</member>
<member name="M:VisionNET.Comparison.TreeHistogram.Divide(VisionNET.Comparison.TreeHistogram,System.Single)">
<summary>
Divides the all nodes in <paramref name="hist"/> by <paramref name="value"/>. Does not alter the arguments.
</summary>
<param name="hist">Histogram to divide</param>
<param name="value">Divisor</param>
<returns>The resulting histogram</returns>
</member>
<member name="M:VisionNET.Comparison.TreeHistogram.Union(VisionNET.Comparison.TreeHistogram,VisionNET.Comparison.TreeHistogram)">
<summary>
Creates a union of two TreeHistograms.
</summary>
<param name="lhs">Histogram to union</param>
<param name="rhs">Second histogram</param>
<returns>Union of both histograms</returns>
</member>
<member name="M:VisionNET.Comparison.TreeHistogram.Subtract(VisionNET.Comparison.TreeHistogram,VisionNET.Comparison.TreeHistogram)">
<summary>
Subtracts the values in one histogram from another.
</summary>
<param name="lhs">A histogram</param>
<param name="rhs">The histogram to subtract</param>
<returns>The difference of the two histograms</returns>
</member>
<member name="M:VisionNET.Comparison.TreeHistogram.Intersect(VisionNET.Comparison.TreeHistogram,VisionNET.Comparison.TreeHistogram)">
<summary>
Intersects two histograms.
</summary>
<param name="lhs">Histogram</param>
<param name="rhs">The second histogram</param>
<returns>The histogram intersection of <paramref name="lhs"/> and <paramref name="rhs"/></returns>
</member>
<member name="M:VisionNET.Comparison.TreeHistogram.Write(System.IO.Stream,VisionNET.Comparison.TreeHistogram)">
<summary>
Writes <paramref name="hist"/> to <paramref name="stream"/>.
</summary>
<param name="stream">Stream to use for writing the histogram</param>
<param name="hist">Histogram to write</param>
</member>
<member name="M:VisionNET.Comparison.TreeHistogram.Read(System.IO.Stream)">
<summary>
Reads a histogram from <paramref name="stream"/>.
</summary>
<param name="stream">The stream to read from</param>
<returns>The stored histogram</returns>
</member>
<member name="M:VisionNET.Comparison.TreeHistogram.GetEnumerator">
<summary>
Returns an enumerator for this histogram.
</summary>
<returns>An enumerator</returns>
</member>
<member name="M:VisionNET.Comparison.TreeHistogram.System#Collections#IEnumerable#GetEnumerator">
<summary>
Returns an enumerator for this histogram.
</summary>
<returns>An enumerator</returns>
</member>
<member name="P:VisionNET.Comparison.TreeHistogram.ID">
<summary>
ID of this histogram.
</summary>
</member>
<member name="P:VisionNET.Comparison.TreeHistogram.Item(System.Byte,System.Int32)">
<summary>
Indexes the histogram. Uses a binary search to find the appropriate node, and thus should not be used in computationally intensive circumstances.
</summary>
<param name="tree">Tree of the node</param>
<param name="index">Index of the node</param>
<returns>The value of the node within the tree</returns>
</member>
<member name="P:VisionNET.Comparison.TreeHistogram.Count">
<summary>
The number of nodes in the tree.
</summary>
</member>
<member name="T:VisionNET.BooleanArrayHandler">
<remarks>
Handles a three dimensional array of boolean values.
</remarks>
</member>
<member name="M:VisionNET.BooleanArrayHandler.#ctor(System.Int32,System.Int32,System.Int32)">
<summary>
Constructor.
</summary>
<param name="rows">Number of rows.</param>
<param name="columns">Number of columns.</param>
<param name="channels">Number of channels.</param>
</member>
<member name="M:VisionNET.BooleanArrayHandler.#ctor">
<summary>
Constructor. Creates a dimensionless array.
</summary>
</member>
<member name="M:VisionNET.BooleanArrayHandler.#ctor(System.Boolean[0:,0:,0:])">
<summary>
Constructor.
</summary>
<param name="data">Array to handle.</param>
</member>
<member name="M:VisionNET.BooleanArrayHandler.ComputeRectangleSum(System.Int32,System.Int32,System.Int32,VisionNET.Rectangle)">
<summary>
Computes a sum of the values in the array starting at (<paramref name="row"/>, <paramref name="column"/>) in <paramref name="channel" />
in a rectangle described by the offset and size in <paramref name="rect"/>.
</summary>
<param name="row">Reference row</param>
<param name="column">Reference column</param>
<param name="channel">Channel to draw values from</param>
<param name="rect">Offset and size of the rectangle</param>
<returns>The sum of all values in the rectangle</returns>
</member>
<member name="M:VisionNET.BooleanArrayHandler.ExtractChannel(System.Int32)">
<summary>
Extracts an entire channel from the array.
</summary>
<param name="channel">Channel to extract</param>
<returns>Extracted channel</returns>
</member>
<member name="M:VisionNET.BooleanArrayHandler.ExtractRectangle(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Extracts a portion of the array defined by the parameters.
</summary>
<param name="startRow">Starting row</param>
<param name="startColumn">Starting column</param>
<param name="rows">Number of rows in the portion</param>
<param name="columns">Number of columns in the portion</param>
<returns>A portion of the array</returns>
</member>
<member name="M:VisionNET.BooleanArrayHandler.SetData(System.Boolean[0:,0:,0:])">
<summary>
Sets the data of the array to <paramref name="data"/>. This new array will replace the current one. No copy is created.
</summary>
<param name="data">Array to handle</param>
</member>
<member name="M:VisionNET.BooleanArrayHandler.SetDimensions(System.Int32,System.Int32,System.Int32)">
<summary>