Skip to content
#

real-world

Here are 29 public repositories matching this topic...

Implementation of Real-World example in One Solution - One Project for web application development with Asp.Net Core & EF.Core. Only one web application project which used aspnetcore components; razor pages, middlewares, dependency injection, configuration, logging. To create websites with minimum implementation of asp.net core based on HTML5, CSS, and JavaScript. You can use this boilerplate for fast implementation, minimum development, bootstrap your idea, create Minimum Viable Product (MVP), idea validation, startup development implementation for a limited time and limited resources with using latest asp.net core and entity framework core.

  • Updated May 30, 2020
  • C#
steven807
steven807 commented Sep 18, 2018

It is hard to be sure with C++ being as unsafe as it is, but it looks like the two calls to cv::Sobel() take one too few arguments. They look like:

Sobel(blurred, dx, dx.type(), 1, 0, 7, 1, BORDER_REPLICATE);
Sobel(blurred, dy, dy.type(), 0, 1, 7, 1, BORDER_REPLICATE);

but the interface to cv::Sobel() is:

Sobel( InputArray src, OutputArray dst, int ddepth,
              

Improve this page

Add a description, image, and links to the real-world topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the real-world topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.