12 lines
240 B
C#
12 lines
240 B
C#
using RobotNet10.Shared.Geometry;
|
|
|
|
namespace RobotNet10.RobotApp.Detection;
|
|
|
|
public interface IDetector : IDisposable
|
|
{
|
|
Pose MarkerPose { get; }
|
|
DateTime DetectionTime { get; }
|
|
void Active();
|
|
void Disable();
|
|
}
|