Interface IArucoCamera
Captures images of a camera.
Inherited Members
Namespace: ArucoUnity.Cameras
Assembly: Assembly-CSharp.dll
Syntax
public interface IArucoCamera : IController
Properties
| Improve this Doc View SourceCameraNumber
Gets the number of cameras in the system.
Declaration
int CameraNumber { get; }
Property Value
Type | Description |
---|---|
Int32 |
ImageDatas
Gets the Images content.
Declaration
byte[][] ImageDatas { get; }
Property Value
Type | Description |
---|---|
Byte[][] |
ImageDataSizes
Gets the size of each ImageDatas.
Declaration
int[] ImageDataSizes { get; }
Property Value
Type | Description |
---|---|
Int32[] |
ImageRatios
Gets the ratios of each Images.
Declaration
float[] ImageRatios { get; }
Property Value
Type | Description |
---|---|
Single[] |
Images
Gets or sets the current images manipulated by OpenCV. There are CameraNumber images: one for each camera.
Declaration
Cv.Mat[] Images { get; }
Property Value
Type | Description |
---|---|
Cv.Mat[] |
Name
Gets the name of the camera system used.
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
String |
Textures
Gets the the current images manipulated by Unity. There are CameraNumber images: one for each camera.
Declaration
Texture2D[] Textures { get; }
Property Value
Type | Description |
---|---|
Texture2D[] |
Events
| Improve this Doc View SourceImagesUpdated
Called when the Images have been updated.
Declaration
event Action ImagesUpdated
Event Type
Type | Description |
---|---|
Action |
UndistortRectifyImages
Callback to undistort and rectify the images in parameters.
Declaration
event Action<Cv.Mat[], byte[][]> UndistortRectifyImages
Event Type
Type | Description |
---|---|
Action<Cv.Mat[], Byte[][]> |