Found 10,634 repositories(showing 30)
18601949127
这是我自己做的一个类似滴滴打车的Android出行项目,主要针对滴滴等出行平台一直饱受质疑的“人车不符”问题,以及当前越发火热的或计划和出海战略,给出行项目增加了下面几个功能: 1. RFID识别验证功能:在司机证件或者车内识别硬件嵌入RFID识别芯片,乘客使用手机读取到芯片信息,并且通过网络发送到出行平台数据库进行验证(我用JNI加了一个C语言的MD5加密算法对识别到的信息进行了加密)。如果不是合规的“人”或“车”,则不能完成订单并向平台或监管单位汇报当前位置。(为了方便读者测试,可以使用手机读取任何一个加密或非加密RFID芯片,比如银行卡、公交卡等,我在代码中的验证前阶段把芯片信息都换成我自己的司机信息,确保读者测试时可以收到服务器的回复) 2. 海外版功能:点击切换当前语言。 3. 司机证件号码识别功能:读取司机证件上的证件号码,也可以用来与出行平台数据库的接单司机信息进行。I complete this whole project on my own . Including Android application programming,web server ( Apache + PHP + MySQL), and UI. 1.Map route planing。You can use mobile phone choose pick up & destination address,application provide address name hint and draw optimized route for user , then call car for you. 2.RFID authentication function:User can use application to scan driver license or other RFID hardware, then use NDK MD5 algorithm encrypt RFID number, and send it to Web Server Database, check with driver information and authenticate ID number , if ID number coherent with driver info , send back driver information to User and continue call car order . record user location and alert if ID not coherent. 3.Driver License Number Recognition : Application can recognize driver license digit number ,and also can send to web server for authentication & feed back result to user.
Erkaman
Digit recognition with Convolutional Neural Networks in WebGL
1nfinityLoop
I made a real time Sudoku solver using the camera, it looks for the edges of the Sudoku in the frame, extracts it, solves it and overlays the solution on the puzzle itself. For the digit recognition, I used a CNN, trained using Keras with printed characters from the different ubuntu fonts. For the image processing part, I used OpenCV for the edge detection.
Handwritten Digit Recognition using Machine Learning and Deep Learning
potterhsu
A TensorFlow implementation of Multi-digit Number Recognition from Street View Imagery using Deep Convolutional Neural Networks (http://arxiv.org/pdf/1312.6082.pdf)
This project shows how to use CNN to perform Chinese character recognition, a much more complicated task compared to MNIST digit recognition.
potterhsu
A PyTorch implementation of Multi-digit Number Recognition from Street View Imagery using Deep Convolutional Neural Networks (http://arxiv.org/pdf/1312.6082.pdf)
NeuralNine
A script that trains a model to recognize handwritten digits using the MNIST data set. Then it loads external files and uses the neural network to predict what digits they are.
bikz05
Handwritten Digit Recognition using OpenCV, sklearn and Python
zxzhijia
Brian 2 version of Paper "Unsupervised Learning of digit recognition using STDP"
ayushoriginal
This CNN-based model for recognition of hand written digits attains a validation accuracy of 99.2% after training for 12 epochs. Its trained on the MNIST dataset on Kaggle.
joeledenberg
Digit recognition with neural network
cvdfoundation
The MNIST database of handwritten digits is one of the most popular image recognition datasets. It contains 60k examples for training and 10k examples for testing.
Curt-Park
Handwritten digit recognition with MNIST & Keras
amitrajitbose
Handwritten digit recognition using neural network trained on 60000 images from MNIST dataset
desh2608
Python implementation of simple GMM and HMM models for isolated digit recognition.
stevenobadja
An image recognition/object detection model that detects handwritten digits and simple math operators. The output of the predicted objects (numbers & math operators) is then evaluated and solved.
Gesture digit recognition, 手势数字识别,pytorch和tensorflow实现
🏆 A Comparative Study on Handwritten Digits Recognition using Classifiers like K-Nearest Neighbours (K-NN), Multiclass Perceptron/Artificial Neural Network (ANN) and Support Vector Machine (SVM) discussing the pros and cons of each algorithm and providing the comparison results in terms of accuracy and efficiecy of each algorithm.
linuslau
NumberRecognition is a project aimed at recognizing handwritten digits from the MNIST dataset using PyTorch. It includes scripts for training and inference, along with utilities for dataset preparation. This project is ideal for learning the basics of neural networks and digit recognition. This is a "Hello World" program in the field of AI.
bensonruan
Hand Written Digit Recognition
leitro
Handwrite digits recognition using KNN algorithms with training real time.
reddyprasade
In general, a learning problem considers a set of n samples of data and then tries to predict properties of unknown data. If each sample is more than a single number and, for instance, a multi-dimensional entry (aka multivariate data), it is said to have several attributes or features. Learning problems fall into a few categories: supervised learning, in which the data comes with additional attributes that we want to predict (Click here to go to the scikit-learn supervised learning page).This problem can be either: classification: samples belong to two or more classes and we want to learn from already labeled data how to predict the class of unlabeled data. An example of a classification problem would be handwritten digit recognition, in which the aim is to assign each input vector to one of a finite number of discrete categories. Another way to think of classification is as a discrete (as opposed to continuous) form of supervised learning where one has a limited number of categories and for each of the n samples provided, one is to try to label them with the correct category or class. regression: if the desired output consists of one or more continuous variables, then the task is called regression. An example of a regression problem would be the prediction of the length of a salmon as a function of its age and weight. unsupervised learning, in which the training data consists of a set of input vectors x without any corresponding target values. The goal in such problems may be to discover groups of similar examples within the data, where it is called clustering, or to determine the distribution of data within the input space, known as density estimation, or to project the data from a high-dimensional space down to two or three dimensions for the purpose of visualization (Click here to go to the Scikit-Learn unsupervised learning page).
In-Browser Digit recognition with Tensorflow.js and React using Mnist dataset
nai-kon
Handwritten Digit Recognition WebApp using pytorch and Flask
tetsuo-ai
handwritten digit recognition system using a custom neural network architecture. Built with C, it features both training capabilities and an interactive recognition interface. >98% accuracy on the MNIST dataset.
michaelzhiluo
Convolutional Neural Network for Realtime Digit Recognition on Webcam
chih-chun-chang
Handwritten Digit Recognition Using Convolutional Neural Network by Python
philipbrown
Handwritten digit recognition in Elixir
pb1672
Andrew Ng's Machine Learning Class Projects Description: Ex1 - Gradient Descent, Newton's Method, Linear Regression Ex2 - Sigmoid Kernels Ex3 - Logistic Regression Implementation Ex4 - Neural Networks implementation for Digit Recognition Ex5 - Regularized Linear Regression, Polynomial Regression Ex6 - SVM (Kernel implementation) for Spam Classification Ex8 - Recommender System (Collaborative Filtering) and Anomaly Detection