ImageTColor, TDepth Constructor (TDepth) |
http://www.emgu.com
Create image from the specific multi-dimensional data, where the 1st dimesion is # of rows (height), the 2nd dimension is # cols (width) and the 3rd dimension is the channel
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic Image(
TDepth[,,] data
)
Public Sub New (
data As TDepth(,,)
)
public:
Image(
array<TDepth,3>^ data
)
new :
data : 'TDepth[,,] -> Image
Parameters
- data
- Type: TDepth
The multi-dimensional data where the 1st dimension is # of rows (height), the 2nd dimension is # cols (width) and the 3rd dimension is the channel
See Also