|
@@ -1,34 +1,30 @@
|
|
using System;
|
|
using System;
|
|
-using System.Collections.Generic;
|
|
|
|
-using System.Linq;
|
|
|
|
-using System.Text;
|
|
|
|
-using System.Threading.Tasks;
|
|
|
|
using Emgu.CV;
|
|
using Emgu.CV;
|
|
using Emgu.CV.Structure;
|
|
using Emgu.CV.Structure;
|
|
-using System.Drawing;
|
|
+using System.Threading;
|
|
|
|
|
|
namespace BBIWARG.Input.InputProviding
|
|
namespace BBIWARG.Input.InputProviding
|
|
{
|
|
{
|
|
- class InputProviderIntel : IInputProvider
|
|
+ class InputProviderIntel : MarshalByRefObject, IInputProvider
|
|
{
|
|
{
|
|
- PXCMSenseManager senseManager;
|
|
+ IntelCameraWrapper wrapper;
|
|
|
|
|
|
public int CurrentFrameID
|
|
public int CurrentFrameID
|
|
{
|
|
{
|
|
get;
|
|
get;
|
|
- private set;
|
|
+ set;
|
|
}
|
|
}
|
|
|
|
|
|
public float FieldOfViewHorizontal
|
|
public float FieldOfViewHorizontal
|
|
{
|
|
{
|
|
get;
|
|
get;
|
|
- private set;
|
|
+ set;
|
|
}
|
|
}
|
|
|
|
|
|
public float FieldOfViewVertical
|
|
public float FieldOfViewVertical
|
|
{
|
|
{
|
|
get;
|
|
get;
|
|
- private set;
|
|
+ set;
|
|
}
|
|
}
|
|
|
|
|
|
public int ImageWidth
|
|
public int ImageWidth
|
|
@@ -44,14 +40,15 @@ namespace BBIWARG.Input.InputProviding
|
|
public bool IsActive
|
|
public bool IsActive
|
|
{
|
|
{
|
|
get;
|
|
get;
|
|
- private set;
|
|
+ set;
|
|
}
|
|
}
|
|
|
|
|
|
public event DeviceStartedEventHandler DeviceStartedEvent;
|
|
public event DeviceStartedEventHandler DeviceStartedEvent;
|
|
|
|
|
|
public event NewFrameEventHandler NewFrameEvent;
|
|
public event NewFrameEventHandler NewFrameEvent;
|
|
|
|
|
|
- protected UInt16 lowConfidenceValue;
|
|
+ public UInt16 lowConfidenceValue;
|
|
|
|
+ private AppDomain domain;
|
|
|
|
|
|
public void initialize()
|
|
public void initialize()
|
|
{
|
|
{
|
|
@@ -60,77 +57,50 @@ namespace BBIWARG.Input.InputProviding
|
|
|
|
|
|
public void start()
|
|
public void start()
|
|
{
|
|
{
|
|
- senseManager = PXCMSenseManager.CreateInstance();
|
|
+ domain = System.AppDomain.CreateDomain("IntelSucks");
|
|
- PXCMVideoModule.DataDesc ddesc = new PXCMVideoModule.DataDesc();
|
|
|
|
- ddesc.deviceInfo.streams = PXCMCapture.StreamType.STREAM_TYPE_DEPTH;
|
|
|
|
- senseManager.EnableStreams(ddesc);
|
|
|
|
|
|
|
|
- senseManager.Init();
|
|
+ wrapper = (IntelCameraWrapper) domain.CreateInstanceAndUnwrap(typeof(IntelCameraWrapper).Assembly.GetName().ToString(), typeof(IntelCameraWrapper).FullName);
|
|
-
|
|
+ wrapper.init(this);
|
|
- PXCMPointF32 fov = senseManager.captureManager.device.QueryDepthFieldOfView();
|
|
|
|
- FieldOfViewHorizontal = fov.x;
|
|
|
|
- FieldOfViewVertical = fov.y;
|
|
|
|
-
|
|
|
|
- lowConfidenceValue = senseManager.captureManager.device.QueryDepthLowConfidenceValue();
|
|
|
|
- senseManager.captureManager.device.SetDepthConfidenceThreshold((UInt16)Parameters.ConfidenceImageMinThreshold);
|
|
|
|
|
|
|
|
IsActive = true;
|
|
IsActive = true;
|
|
|
|
|
|
- if (DeviceStartedEvent != null)
|
|
+ if (DeviceStartedEvent != null) {
|
|
DeviceStartedEvent(this, new EventArgs());
|
|
DeviceStartedEvent(this, new EventArgs());
|
|
|
|
+ DeviceStartedEvent = null;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ wrapper.run();
|
|
|
|
|
|
- run();
|
|
+ if (wrapper.errorstate) {
|
|
|
|
+
|
|
|
|
+ Console.WriteLine("Killing AppDomain...");
|
|
|
|
+ System.AppDomain.Unload(domain);
|
|
|
|
+ Thread.Sleep(5000);
|
|
|
|
+ Console.WriteLine("Starting again...");
|
|
|
|
+ start();
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
public void stop()
|
|
public void stop()
|
|
{
|
|
{
|
|
IsActive = false;
|
|
IsActive = false;
|
|
}
|
|
}
|
|
|
|
|
|
- protected void run()
|
|
+ internal bool hasNewFrameEvent()
|
|
{
|
|
{
|
|
- while (IsActive) {
|
|
+ return NewFrameEvent != null;
|
|
- if (senseManager.AcquireFrame(true).IsError())
|
|
+ }
|
|
- continue;
|
|
|
|
-
|
|
|
|
- if (NewFrameEvent != null)
|
|
|
|
- {
|
|
|
|
-
|
|
|
|
- PXCMCapture.Sample sample = senseManager.QuerySample();
|
|
|
|
- PXCMImage depthImage = sample.depth;
|
|
|
|
- PXCMImage.ImageInfo info = depthImage.info;
|
|
|
|
- PXCMImage.ImageData imageData;
|
|
|
|
-
|
|
|
|
- depthImage.AcquireAccess(PXCMImage.Access.ACCESS_READ, PXCMImage.PixelFormat.PIXEL_FORMAT_DEPTH, out imageData);
|
|
|
|
- ushort[] data = imageData.ToUShortArray(0, info.width * info.height);
|
|
|
|
-
|
|
|
|
- Image<Gray, UInt16> dImg;
|
|
|
|
-
|
|
|
|
- unsafe
|
|
|
|
- {
|
|
|
|
- fixed (ushort* d = data)
|
|
|
|
- {
|
|
|
|
- IntPtr ptr = (IntPtr)d;
|
|
|
|
- dImg = new Image<Gray, UInt16>(info.width, info.height, info.width * sizeof(ushort), ptr).Copy();
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- depthImage.ReleaseAccess(imageData);
|
|
|
|
- depthImage.Dispose();
|
|
|
|
-
|
|
|
|
-
|
|
|
|
- Image<Gray, byte> mask = dImg.InRange(new Gray(lowConfidenceValue), new Gray(lowConfidenceValue));
|
|
|
|
- dImg.SetValue(new Gray(Int16.MaxValue), mask);
|
|
|
|
-
|
|
|
|
- NewFrameEvent(this, new NewFrameEventArgs(CurrentFrameID, dImg));
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- CurrentFrameID += 1;
|
|
|
|
-
|
|
|
|
- senseManager.ReleaseFrame();
|
|
|
|
- }
|
|
|
|
|
|
|
|
- senseManager.Dispose();
|
|
+ internal void killAndRestart()
|
|
|
|
+ {
|
|
|
|
+ throw new NotImplementedException();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ internal void newFrame(int currentFrameID, Image<Gray, ushort> dImg)
|
|
|
|
+ {
|
|
|
|
+ NewFrameEvent(this, new NewFrameEventArgs(currentFrameID, dImg));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|