cameracv/libs/opencv/samples/wp8/OpenCVXaml/OpenCVComponent/OpenCVComponent.h
2023-05-18 21:39:43 +03:00

14 lines
No EOL
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);
};
}