mirror of
https://github.com/opencv/opencv.git
synced 2024-12-02 16:00:17 +08:00
213a6bc5c4
Signed-off-by: Maxim Kostin <v-maxkos@microsoft.com>
14 lines
368 B
C++
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);
|
|
};
|
|
} |