Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Tetragramm
GitHub Repository: Tetragramm/opencv
Path: blob/master/samples/wp8/OpenCVXaml/OpenCVComponent/OpenCVComponent.h
16339 views
1
#pragma once
2
3
#include <ppltasks.h>
4
#include <collection.h>
5
6
namespace OpenCVComponent
7
{
8
public ref class OpenCVLib sealed
9
{
10
public:
11
OpenCVLib();
12
Windows::Foundation::IAsyncOperation<Windows::Foundation::Collections::IVectorView<int>^>^ ProcessAsync(Windows::Foundation::Collections::IVector<int>^ input, int width, int height);
13
};
14
}
15