#include #include #include #include #include #include #include // BGR accessor #include // CommandLineParser const std::string keys = "{ h help | | Print this help message }" "{ output | output.png | Path to the output file }"; #ifdef HAVE_OAK int main(int argc, char *argv[]) { cv::CommandLineParser cmd(argc, argv, keys); if (cmd.has("help")) { cmd.printMessage(); return 0; } const std::string output_name = cmd.get("output"); std::vector h = {1, 0, -1, 2, 0, -2, 1, 0, -1}; std::vector v = { 1, 2, 1, 0, 0, 0, -1, -2, -1}; cv::Mat hk(3, 3, CV_32SC1, h.data()); cv::Mat vk(3, 3, CV_32SC1, v.data()); // Heterogeneous pipeline: // OAK camera -> Sobel -> streaming accessor (CPU) cv::GFrame in; cv::GFrame sobel = cv::gapi::oak::sobelXY(in, hk, vk); // Default camera and then sobel work only with nv12 format cv::GMat out = cv::gapi::streaming::Y(sobel); auto args = cv::compile_args(cv::gapi::oak::ColorCameraParams{}, cv::gapi::oak::kernels()); auto pipeline = cv::GComputation(cv::GIn(in), cv::GOut(out)).compileStreaming(std::move(args)); // Graph execution ///////////////////////////////////////////////////////// cv::Mat out_mat(1920, 1080, CV_8UC1); pipeline.setSource(cv::gapi::wip::make_src()); pipeline.start(); // pull 1 frame pipeline.pull(cv::gout(out_mat)); cv::imwrite(output_name, out_mat); std::cout << "Pipeline finished: " << output_name << " file has been written." << std::endl; } #else // HAVE_OAK int main() { GAPI_Assert(false && "Built without OAK support"); return -1; } #endif // HAVE_OAK