All Projects → bnosac → Image

bnosac / Image

Computer Vision and Image Recognition algorithms for R users

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Image

VideoRecognition-realtime-autotrainer-alerts
State of the art object detection in real-time using YOLOV3 algorithm. Augmented with a process that allows easy training of the classifier as a plug & play solution . Provides alert if an item in an alert list is detected.
Stars: ✭ 36 (-83.02%)
Mutual labels:  image-recognition, darknet
facenet-darknet-inference
Face recognition using facenet
Stars: ✭ 29 (-86.32%)
Mutual labels:  dlib, darknet
Node Yolo
Node bindings for YOLO/Darknet image recognition library
Stars: ✭ 364 (+71.7%)
Mutual labels:  image-recognition, darknet
Vit
An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale
Stars: ✭ 176 (-16.98%)
Mutual labels:  image-recognition
Rmarkdown
Dynamic Documents for R
Stars: ✭ 2,319 (+993.87%)
Mutual labels:  r-package
End To End For Chinese Plate Recognition
基于u-net,cv2以及cnn的中文车牌定位,矫正和端到端识别软件,其中unet和cv2用于车牌定位和矫正,cnn进行车牌识别,unet和cnn都是基于tensorflow的keras实现
Stars: ✭ 197 (-7.08%)
Mutual labels:  image-recognition
Yolo person detect
person detect based on yolov3 with several Python scripts
Stars: ✭ 212 (+0%)
Mutual labels:  darknet
Cleannlp
R package providing annotators and a normalized data model for natural language processing
Stars: ✭ 174 (-17.92%)
Mutual labels:  r-package
Netron
Visualizer for neural network, deep learning, and machine learning models
Stars: ✭ 17,193 (+8009.91%)
Mutual labels:  darknet
Viseron
Self-hosted NVR with object detection
Stars: ✭ 192 (-9.43%)
Mutual labels:  darknet
Php Opencv
php wrapper for opencv
Stars: ✭ 194 (-8.49%)
Mutual labels:  darknet
Darknet face with landmark
加入关键点的darknet训练框架,轻量级的人脸检测,支持ncnn推理
Stars: ✭ 192 (-9.43%)
Mutual labels:  darknet
Ggdist
Visualizations of distributions and uncertainty
Stars: ✭ 197 (-7.08%)
Mutual labels:  r-package
Formatr
Format R Code Automatically
Stars: ✭ 179 (-15.57%)
Mutual labels:  r-package
Charlatan
Create fake data in R
Stars: ✭ 209 (-1.42%)
Mutual labels:  r-package
Dataretrieval
This R package is designed to obtain USGS or EPA water quality sample data, streamflow data, and metadata directly from web services. See: http://usgs-r.github.io/dataRetrieval/
Stars: ✭ 176 (-16.98%)
Mutual labels:  r-package
Pine
🌲 Aimbot powered by real-time object detection with neural networks, GPU accelerated with Nvidia. Optimized for use with CS:GO.
Stars: ✭ 202 (-4.72%)
Mutual labels:  darknet
Deepdetect
Deep Learning API and Server in C++14 support for Caffe, Caffe2, PyTorch,TensorRT, Dlib, NCNN, Tensorflow, XGBoost and TSNE
Stars: ✭ 2,306 (+987.74%)
Mutual labels:  dlib
Tesseract
Bindings to Tesseract OCR engine for R
Stars: ✭ 192 (-9.43%)
Mutual labels:  r-package
Medium Facenet Tutorial
Facial Recognition Pipeline using Dlib and Tensorflow
Stars: ✭ 196 (-7.55%)
Mutual labels:  dlib

image - Computer Vision and Image Recognition algorithms for R users

This repository contains a suite of R packages which perform image algorithms currently not available in other R packages like magick, imager or EBImage.

These algorithms are put into different packages because of license differences. Currently the following R packages are available:

Package Functionality License Details
image.CornerDetectionF9 FAST-9 corner detection for images BSD-2 Details
image.CornerDetectionHarris Harris corner detection for images BSD-2 Details
image.LineSegmentDetector Line Segment Detector (LSD) for images AGPL-3 Details
image.ContourDetector Unsupervised Smooth Contour Line Detection for images AGPL-3 Details
image.CannyEdges Canny Edge Detector for Images GPL-3 Details
image.Otsu Otsu's Image Segmentation Method MIT Details
image.dlib Speeded up robust features (SURF) and histogram of oriented gradients (HOG) features AGPL-3 Details
image.libfacedetection CNN for Face Detection BSD-3 Details
image.darknet Image classification using darknet with deep learning models AlexNet, Darknet, VGG-16, Extraction (GoogleNet) and Darknet19. As well object detection using the state-of-the art YOLO detection system MIT Details
image.OpenPano Image Stitching see file LICENSE Details
image.DenoiseNLMeans Non-local means denoising see file LICENSE Details

More packages and extensions are under development.

A presentation given at the useR-2017 conference is available in file presentation-user2017.pdf

Installation

  • Some packages are on CRAN
install.packages("image.CannyEdges")
install.packages("image.ContourDetector")
install.packages("image.CornerDetectionF9")
install.packages("image.CornerDetectionHarris")
install.packages("image.dlib")
install.packages("image.libfacedetection")
install.packages("image.LineSegmentDetector")
install.packages("image.Otsu")
install.packages("image.binarization")
  • You can see if the binary packages for your operating system are on the BNOSAC drat repo at https://github.com/bnosac/drat
  • If they are, you can just install them as follows, where you replace thepackagename with one of the packages you are interested in
install.packages("thepackagename", repos = "https://bnosac.github.io/drat")

Development packages

Install the development version of packages as follows:

install.packages("remotes")
remotes::install_github("bnosac/image", subdir = "image.CornerDetectionF9")
remotes::install_github("bnosac/image", subdir = "image.CornerDetectionHarris")
remotes::install_github("bnosac/image", subdir = "image.LineSegmentDetector")
remotes::install_github("bnosac/image", subdir = "image.ContourDetector")
remotes::install_github("bnosac/image", subdir = "image.CannyEdges")
remotes::install_github("bnosac/image", subdir = "image.Otsu")
remotes::install_github("bnosac/image", subdir = "image.dlib")
remotes::install_github("bnosac/image", subdir = "image.darknet")
remotes::install_github("bnosac/image", subdir = "image.DenoiseNLMeans")
remotes::install_github("bnosac/image", subdir = "image.libfacedetection")
remotes::install_github("bnosac/image", subdir = "image.OpenPano")

CI builds

Support in image recognition

Need support in image recognition? Contact BNOSAC: http://www.bnosac.be

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].