mirror of
https://github.com/opencv/opencv.git
synced 2025-06-13 04:52:53 +08:00
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);
|
|
};
|
|
} |