OpenCVComponent.h 368 B

1234567891011121314
  1. #pragma once
  2. #include <ppltasks.h>
  3. #include <collection.h>
  4. namespace OpenCVComponent
  5. {
  6. public ref class OpenCVLib sealed
  7. {
  8. public:
  9. OpenCVLib();
  10. Windows::Foundation::IAsyncOperation<Windows::Foundation::Collections::IVectorView<int>^>^ ProcessAsync(Windows::Foundation::Collections::IVector<int>^ input, int width, int height);
  11. };
  12. }