OpenCV_4.2.0/opencv-4.2.0/samples/wp8/OpenCVXaml/OpenCVComponent/OpenCVComponent.h

14 lines
368 B
C
Raw Normal View History

2024-07-25 16:47:56 +08:00
#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);
};
}