• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 }