[actual combat] license plate detection and recognition based on SVM of OpenCv

This issue continues to share the SVM practice project: license plate detection and recognition, and also introduces some dry goods In retrospect, Last issue introduced the SVM model training of OpenCv , this issue will continue to introduce the recognition process. This flow chart is still classic and intuitive. Let's share what we said ...

Posted by Cornelia on Thu, 07 May 2020 21:11:53 -0700

Data analysis and visualization of scientific computing

1, The extended modules for data analysis, scientific computing and visualization are mainly: numpy, scipy, pandas, symphony, matplotlib, Traits, TraitsUI, Chaco, TVTK, Mayavi, VPython, OpenCV. 1.numpy module: scientific computing package, which supports N-dimensional array operation, large matrix processing, mature broadcast function library, ...

Posted by canobi on Tue, 05 May 2020 18:03:23 -0700

java 8 method reference

If the code block of Lambda expression has only one line of code, the program can omit the curly braces of the code block of expression. Moreover, if there is only one line of code, the reference of method and the reference of constructor can also be used Here are four examples of references public class function ...

Posted by bateman on Tue, 05 May 2020 09:46:35 -0700

New Python day 4 (appliance)

Python generator Generators and build expressions a=[i*2 for i in range(10)] generate expressionb=(i*2 for i in range(10)) (generator) Features of generator: advantages (no memory space, fast generation speed), disadvantages (can't slice, can only save the current value, can't get the previous value) Python create generator #1.generator b=(i* ...

Posted by Warptweet on Sun, 03 May 2020 03:04:45 -0700

IP proxy pool built by python crawler scrape framework

1,http://www.xicidaili.com/wt Domestic free agent website 2. Crawl the IP address and port of the website with the help of the scraper and write them into the txt file 3. Write a script to test whether the ip address and port in the txt document are available 4. Enter the available ip address and port into the txt d ...

Posted by jtmathome on Thu, 30 Apr 2020 19:48:04 -0700

Instructions for Python [map, reduce, filter] built-in functions

notes preceding the text of a book or following the title of an article Introduce the methods of map, reduce, and filter built-in functions in Python 1: map map(...) map(function, sequence[, sequence, ...]) -> list Execute function(item) for item in sequence, and output the result as list. >>> map(str, range(5)) #st ...

Posted by karassik on Thu, 30 Apr 2020 08:22:15 -0700

Create a RazorPagesMovie project based on ASP.NET core 3.1 - Razor page interpretation and update of the built base frame

This section mainly introduces the Razor page created by building the base frame in the previous section, and makes some UI changes. 1, Create, delete, detail and edit pages 1. Double click the Pages/Movies/Index.cshtml.cs file, which is a Razor page model:    1 using System; 2 using System.Collections.Generic; 3 using System.Lin ...

Posted by jolle99 on Sun, 26 Apr 2020 21:02:03 -0700

Commonly used built-in functions in python

Basic small function, string function, sequence function Sequence, tuple, list small function max() for maximum (list, tuple, sequence) min() for minimum len() for length >>> a = [1,2,3,4] >>> max(a) 4 >>> min(a) 1 >>> len(a) 4 >>> Operation small function divmod() returns a tuple. The first paramet ...

Posted by mnuzum on Sun, 26 Apr 2020 19:54:55 -0700

Learn algorithm PCA (dimension reduction)

pca is a kind of dimension reduction method of black box. Through mapping, we want the data after projection to be scattered as much as possible, so we need to ensure that the variance after mapping is as large as possible, and the direction of the next mapping is orthogonal to the current mapping direction Steps of pca: Step 1: first, find t ...

Posted by thedualmind on Fri, 24 Apr 2020 07:11:16 -0700

New Java8 feature: Lambda expression

Lambda expressions can be understood as anonymous functions: they have no name, but have parameter lists, function bodies, and return types.It is an implementation of behavior parameterization, which refers to passing different behaviors as parameters to a method whose capabilities depend on the behavior parameters it receives.Using Lambda expr ...

Posted by LDM2009 on Thu, 23 Apr 2020 18:05:13 -0700