OpenCVComponent.h 368 Bytes
Newer Older
wester committed
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);
    };
}