opencv/samples/wp8/OpenCVXaml/OpenCVComponent/OpenCVComponent.h
Maxim Kostin 213a6bc5c4 Adding Widows Phone 8 sample apps
Signed-off-by: Maxim Kostin <v-maxkos@microsoft.com>
2015-03-02 22:26:45 +03:00

14 lines
368 B
C++

#pragma once
#include <ppltasks.h>
#include <collection.h>
namespace OpenCVComponent
{
public ref class OpenCVLib sealed
{
public:
OpenCVLib();
Windows::Foundation::IAsyncOperation<Windows::Foundation::Collections::IVectorView<int>^>^ ProcessAsync(Windows::Foundation::Collections::IVector<int>^ input, int width, int height);
};
}