Blame view

3rdparty/opencv-4.5.4/samples/wp8/OpenCVXaml/OpenCVComponent/OpenCVComponent.h 368 Bytes
f4334277   Hu Chunming   提交3rdparty
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  #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);
      };
  }