|
@@ -8,7 +8,7 @@ namespace bbiwarg
|
|
|
{
|
|
|
static void Main(string[] args)
|
|
|
{
|
|
|
- IVideoDataSource source = new IIsuDataSource("..\\..\\videos\\2.skv");
|
|
|
+ DataSource.IVideoDataSource source = new DataSource.IIsuDataSource("..\\..\\videos\\2.skv");
|
|
|
|
|
|
source.init();
|
|
|
source.start();
|
|
@@ -21,7 +21,7 @@ namespace bbiwarg
|
|
|
|
|
|
if ((i % 30) == 0)
|
|
|
{
|
|
|
- DepthImage image = source.getDepthImage();
|
|
|
+ DataSource.DepthImage image = source.getDepthImage();
|
|
|
|
|
|
Bitmap bm = new Bitmap(image.getWidth(), image.getHeight());
|
|
|
for (int x = 0; x < image.getWidth(); ++x)
|