|
IntegralImageInternalData Property
|
Note: This API is now obsolete.
Provides access to internal array keeping integral image data.
Namespace:
Accord.Imaging
Assembly:
Accord.Imaging (in Accord.Imaging.dll) Version: 3.8.0
Syntax [ObsoleteAttribute("Please use Matrix property instead.")]
public uint[,] InternalData { get; }
<ObsoleteAttribute("Please use Matrix property instead.")>
Public ReadOnly Property InternalData As UInteger(,)
Get
Request Example
View SourceProperty Value
Type:
UInt32Remarks Note |
---|
The array should be accessed by [y, x] indexing. |
Note |
---|
The array's size is [Height+1, Width+1]. The first
row and column are filled with zeros, what is done for more efficient calculation of
rectangles' sums. |
See Also