// OpenCVComponent.cpp #include "pch.h" #include "OpenCVComponent.h" #include #include #include #include #include using namespace OpenCVComponent; using namespace Platform; using namespace concurrency; using namespace Windows::Foundation; using namespace Windows::Foundation::Collections; void CopyIVectorToMatrix(IVector^ input, cv::Mat& mat, int size); void CopyMatrixToVector(const cv::Mat& mat, std::vector& vector, int size); OpenCVLib::OpenCVLib() { } IAsyncOperation^>^ OpenCVLib::ProcessAsync(IVector^ input, int width, int height) { int size = input->Size; cv::Mat mat(width, height, CV_8UC4); CopyIVectorToMatrix(input, mat, size); return create_async([=]() -> IVectorView^ { // convert to grayscale cv::Mat intermediateMat; cv::cvtColor(mat, intermediateMat, COLOR_RGB2GRAY); // convert to BGRA cv::cvtColor(intermediateMat, mat, COLOR_GRAY2BGRA); std::vector output; CopyMatrixToVector(mat, output, size); // Return the outputs as a VectorView return ref new Platform::Collections::VectorView(output); }); } void CopyIVectorToMatrix(IVector^ input, cv::Mat& mat, int size) { unsigned char* data = mat.data; for (int i = 0; i < size; i++) { int value = input->GetAt(i); memcpy(data, (void*) &value, 4); data += 4; } } void CopyMatrixToVector(const cv::Mat& mat, std::vector& vector, int size) { int* data = (int*) mat.data; for (int i = 0; i < size; i++) { vector.push_back(data[i]); } }