Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Bmw Tensorflow Training Gui | 934 | 3 months ago | 2 | apache-2.0 | Python | |||||
This repository allows you to get started with a gui based training a State-of-the-art Deep Learning model with little to no configuration needed! NoCode training with TensorFlow has never been so easy. | ||||||||||
Cvui | 729 | 2 | 7 months ago | 2 | October 08, 2018 | 54 | mit | C++ | ||
A (very) simple UI lib built on top of OpenCV drawing primitives | ||||||||||
Bmw Yolov4 Training Automation | 625 | 15 days ago | 9 | bsd-3-clause | Python | |||||
This repository allows you to get started with training a state-of-the-art Deep Learning model with little to no configuration needed! You provide your labeled dataset or label your dataset using our BMW-LabelTool-Lite and you can start the training right away and monitor it in many different ways like TensorBoard or a custom REST API and GUI. NoCode training with YOLOv4 and YOLOV3 has never been so easy. | ||||||||||
Harvesters | 408 | 1 | 2 | a month ago | 162 | May 19, 2022 | 34 | apache-2.0 | Python | |
Image Acquisition Library for GenICam-based Machine Vision System | ||||||||||
Traffic Signal Violation Detection System | 323 | 6 months ago | 1 | gpl-3.0 | Python | |||||
A Computer Vision based Traffic Signal Violation Detection System from video footage using YOLOv3 & Tkinter. (GUI Included) | ||||||||||
Dice | 261 | a month ago | 132 | other | C++ | |||||
Digital Image Correlation Engine (DICe): a stereo DIC application that runs on Mac, Windows, and Linux | ||||||||||
Guibot | 139 | 22 days ago | 3 | lgpl-3.0 | Python | |||||
A tool for GUI automation using a variety of computer vision and display control backends. | ||||||||||
Monk_gui | 103 | 2 years ago | 2 | apache-2.0 | Python | |||||
A Graphical user Interface for deep learning and computer vision over Monk Libraries | ||||||||||
Deep Learning Training Gui | 89 | 2 years ago | n,ull | mit | HTML | |||||
Train and predict your model on pre-trained deep learning models through the GUI (web app). No more many parameters, no more data preprocessing. | ||||||||||
Uarmcreatorstudio | 72 | 6 years ago | 9 | Python | ||||||
uArm Creator Studio is a Visual Programming Language for robot arms, with a heavy emphasis on computer vision and usability for both low experience and high experience programmers. It's written entirely in Python, and supports python scripting within the application. |
ShapeLogic Scala is a generic computer vision library with cross-platform GUI. You write your image processing algorithm once, and it will work for images based on byte, short, float and double.
It has standard image processing algorithms like: Invert, threshold, edge detection, segmentation, skeletonize, edge tracer, vectorizer, point and line annotation all written in generic idiomatic Scala.
"org.shapelogicscala" %% "shapelogic" % "0.9.0"
Versions available for Scala 2.11 and 2.12
clone git https://github.com/sami-badawi/shapelogic-scala.git
cd shapelogic-scala
sbt compile
sbt test
sbt stage
target/universal/stage/bin/shapelogic
or on Windows
target/universal/stage/bin/shapelogic.bat
ShapeLogic Scala has a simple JavaFX GUI, it can:
ShapeLogic Scala goal is be a framework for object recognition using a hybrid approach to A.I. combining machine learning and symbolic A.I. Using some of the following techniques:
First example will be OCR, optical character recognition for a page of text. It is a solved but nontrivial problem.
The success of Convolutional Neural Network is indisputable. ShapeLogic intend to use CNN for lower level pattern matching not for end to end solutions. Either using TensorFlow's Java interface, Deeplearning4j or hand programmed pattern matches.
ShapeLogic Scala has a unified generic image class BufferImage that is mainly a buffer.
If you want to program your own image operations here are 5 base image operations you can start from:
There are a lot of challenges with creating a generic image class like BufferImage:
ShapeLogic Java was started in 2007 as a Java image processing library and library for functional programming techniques in Java. Functional programming now has better implementations in Java 8 and Scala. ShapeLogic Scala was started in 2016 and ports parts of ShapeLogic Java.
The goal is to keep library dependencies for ShapeLogic low. Currently the images loaders are using javax.imageio and JavaFX. They are only part of Oracle JDK not on OpenJDK.
Threshold:
sbt 'run-main org.shapelogic.sc.script.Threshold -i "image/rgbbmwpng.png" -t 10 -o "image/out.png"'
or
target/universal/stage/bin/shapelogic -main "org.shapelogic.sc.script.Threshold" -- -i image/440px-Lenna.png