私の目標:
Kinectビデオを使用して形状認識(写真上の大きな長方形)を行い、写真に長方形を描いて結果を強調表示して表示します。
使用テクノ:
- C#コード、
- AForge、より具体的にはその形状チェッカー
http://www.aforgenet.com/articles/shape_checker/
魔法の仕組み:
- フレームの準備ができるたびに、フレーム データをバイト配列として取得し、それをビットマップに変換して分析できるようにします。
- 形状認識アルゴリズムを適用する
- 結果をレンダリング...
私の問題:
プロセス全体はこれまでのところ機能していますが、結果をWPFイメージでレンダリングしようとすると、ひどく遅れます...(10秒ごとに1フレーム)...
私のコード:
// AllFramesReady is called every time a frame is ready to use...
private void AllFramesReady(object sender, AllFramesReadyEventArgs e)
{
using (ColorImageFrame colorFrame = e.OpenColorImageFrame())
{
if (colorFrame == null)
{
return;
}
_Pixels = new byte[colorFrame.PixelDataLength];
colorFrame.CopyPixelDataTo(_Pixels);
// Analyze the image
int stride = colorFrame.Width * 4;
System.Drawing.Size size = new System.Drawing.Size(colorFrame.Width, colorFrame.Height);
// get the bitmap from bytes
Bitmap btmap = BytesToBmp(_Pixels, size);
//analyze the data...
btmap = _shapeReco.AnalyzeImage(btmap);
// copy the new data back to pixels
_Pixels = BmpToBytes(btmap);
// rendering the analyzed image
imageAnalyzed.Source =
BitmapSource.Create(colorFrame.Width, colorFrame.Height,
96, 96, PixelFormats.Bgr32, null, _Pixels, stride);
}
}
//
// HERE IS MY SHAPE RECOGNIZER THAT IMPLEMENTS THE SHAPE RECOGNITION ALGORITHM
//
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Imaging;
using AForge;
using AForge.Imaging;
using AForge.Math.Geometry;
namespace KinectSetupDev
{
class MyShapeRecognizer
{
private static String TAG = "MyShapeRecognizer";
/***************************************************************************
* VARIABLES *
***************************************************************************/
private SimpleShapeChecker _ShapeChecker;
private Bitmap _Image; // the image to analyze
private Blob[] _Blobs;
private BlobCounter _BlobCounter;
/***************************************************************************
* CONSTRUCTOR *
***************************************************************************/
public MyShapeRecognizer()
{
Debug.Log(TAG, "MyShapeRecognizer");
_ShapeChecker = new SimpleShapeChecker();
_Image = new Bitmap(300, 400);
_Blobs = null;
_BlobCounter = null;
}
/***************************************************************************
* METHODS *
***************************************************************************/
public Bitmap AnalyzeImage(Bitmap image)
{
Debug.Log(TAG, "AnalyzeImage");
this._Image = image;
this.LocatingObjects();
this.AnalyzeObjects();
return _Image;
}
private void LocatingObjects()
{
Debug.Log(TAG, "LocatingObjects");
// lock image
BitmapData bitmapData = _Image.LockBits(
new Rectangle(0, 0, _Image.Width, _Image.Height),
ImageLockMode.ReadOnly, _Image.PixelFormat);
//locating objects
_BlobCounter = new BlobCounter();
_BlobCounter.FilterBlobs = true;
_BlobCounter.MinHeight = 5;
_BlobCounter.MinWidth = 5;
_BlobCounter.ProcessImage(bitmapData);
_Blobs = _BlobCounter.GetObjectsInformation();
// unlock image
_Image.UnlockBits(bitmapData);
}
private void AnalyzeObjects()
{
Debug.Log(TAG, "AnalyzeObjects");
Graphics g = Graphics.FromImage(_Image);
[DRAW RECT OR CIRCLE ON GRAPHICS]
g.Dispose();
}
// Conver list of AForge.NET's points to array of .NET points
private System.Drawing.Point[] ToPointsArray(List<IntPoint> points)
{
System.Drawing.Point[] array = new System.Drawing.Point[points.Count];
for (int i = 0, n = points.Count; i < n; i++)
{
array[i] = new System.Drawing.Point(points[i].X, points[i].Y);
}
return array;
}
}
}
完全なコードを提供できます (MV C# 2010 プロジェクト...)。どんな助けにも感謝します!
ありがとう。