All Projects → AmmarkoV → RoboVision

AmmarkoV / RoboVision

Licence: other
Attempting to create a program capable of combining stereo video input , with motors and other sensors on a PC running linux , the target is embedded linux for use in a robot!

Programming Languages

c
50402 projects - #5 most used programming language
C++
36643 projects - #6 most used programming language
HTML
75241 projects
shell
77523 projects
processing
702 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to RoboVision

SASensorProcessing
ROS node to create pointcloud out of stereo images from the KITTI Vision Benchmark Suite
Stars: ✭ 26 (+23.81%)
Mutual labels:  stereo-vision, stereo-camera
ALog
Data logger library for the Arduino-based ALog; wtih small changes, can work on many Arduino-based systems
Stars: ✭ 27 (+28.57%)
Mutual labels:  sensor
homeassistant-afvalwijzer
Provides sensors for some Dutch waste collectors
Stars: ✭ 119 (+466.67%)
Mutual labels:  sensor
Awesome-Human-Activity-Recognition
An up-to-date & curated list of Awesome IMU-based Human Activity Recognition(Ubiquitous Computing) papers, methods & resources. Please note that most of the collections of researches are mainly based on IMU data.
Stars: ✭ 72 (+242.86%)
Mutual labels:  sensor
PyBoof
Python wrapper around the BoofCV Computer Vision Library
Stars: ✭ 44 (+109.52%)
Mutual labels:  stereo-camera
dispflownet-tf
Tensorflow implementation of https://lmb.informatik.uni-freiburg.de/Publications/2016/MIFDB16 + pretrained weights + implementation of "Unsupervised Adaptation for Deep Stereo" (ICCV 2017)
Stars: ✭ 18 (-14.29%)
Mutual labels:  stereo-vision
APC
Arduino Pinball Controller
Stars: ✭ 27 (+28.57%)
Mutual labels:  software
SoftUni-Software-Engineering
SoftUni- Software Engineering
Stars: ✭ 47 (+123.81%)
Mutual labels:  software
FRC-Java-Tutorial
A tutorial on how to program a robot for use in the FIRST Robotics Competition
Stars: ✭ 52 (+147.62%)
Mutual labels:  software
sensor.rpi power
A Custom component for Home-Assistant that checks if your Raspberry Pi power supply is giving enough voltage from the kernel.
Stars: ✭ 105 (+400%)
Mutual labels:  sensor
nodejs
Node.js in-process collectors for Instana
Stars: ✭ 66 (+214.29%)
Mutual labels:  sensor
swGL
A multithreaded software implementation of OpenGL 1.3 in C++.
Stars: ✭ 50 (+138.1%)
Mutual labels:  software
gspca-kinect2
Kinect2 Sensor Device Driver for Linux
Stars: ✭ 25 (+19.05%)
Mutual labels:  sensor
iosynth
IoSynth is IoT device/sensor simulator and synthetic data generator.
Stars: ✭ 21 (+0%)
Mutual labels:  sensor
growbox
Code for my smart growbox experiment
Stars: ✭ 23 (+9.52%)
Mutual labels:  sensor
react-native-text-area
Simple and easy to use TextArea for React Native.
Stars: ✭ 20 (-4.76%)
Mutual labels:  software
Advanced-PRTG-Sensors
Collection of my Advanced PRTG Sensors
Stars: ✭ 60 (+185.71%)
Mutual labels:  sensor
FruxePi
Indoor farming software using the Raspberry Pi
Stars: ✭ 118 (+461.9%)
Mutual labels:  sensor
msda
Library for multi-dimensional, multi-sensor, uni/multivariate time series data analysis, unsupervised feature selection, unsupervised deep anomaly detection, and prototype of explainable AI for anomaly detector
Stars: ✭ 80 (+280.95%)
Mutual labels:  sensor
awesome-macos-commandline
A curated list of awesome command-line software for macOS.
Stars: ✭ 167 (+695.24%)
Mutual labels:  software

AmmarServer

RoboVision

A GPLv3 Computer Vision / Robotics Project that aims to provide a compact software stack for generic vision enabled robotics!

Documentation


To start , you can begin by reading my BSc thesis which while give you a detailed overview and the computer vision theory that it is based on in the Documentation directory.

https://github.com/AmmarkoV/RoboVision/blob/master/Documentation/GuarDDoG_RoboVision.pdf?raw=true ( or here http://ammar.gr/GuarDDoG_RoboVision.pdf ) ( or here http://users.otenet.gr/~ammarkov/files/GuarDDoG_RoboVision.pdf )

or the presentation slides

https://github.com/AmmarkoV/RoboVision/blob/master/Documentation/guard_dog_presentation.pdf?raw=true ( or here http://ammar.gr/guard_dog_presentation.pdf ) ( or here http://users.otenet.gr/~ammarkov/files/guard_dog_presentation.pdf )

My more recent work is increasingly human/object tracking relevant and you can see an updated list of publications here https://scholar.google.gr/citations?user=sDOdhtwAAAAJ&hl=en&oi=ao

Status


I have stopped active development on this project for several years now, since I am currently working in EU robotics projects ( http://hobbit.acin.tuwien.ac.at/ , http://www.ramcip-project.eu/ramcip/ and others )

This work is still premature but in the future maybe I will revisit it and continue to work on it. The testing platform for the software is my pet project named “GuardDoG” ( http://ammar.gr/gddg/ ) , a surveillance robot guard for homes and offices. Most of the layers of the project are abstract enough to be able to be used by different designs.

If you don't have the specific motors/ sensors etc , this repository will not be able to work out of the box, you can however use specific parts of it since isolated they might be useful.

Spin-offs


Parts of this original work have now been split in seperate "less monolithic" spin-off repositories , such as

https://github.com/AmmarkoV/RGBDAcquisition - A uniform library wrapper for input from libfreenect,OpenNI,OpenNI2,OpenGL simulations,V4L2 and other types of video and depth input.. This basically is a much better version of the "Video Input" module of this repository which is transparently compatible with a large variety of sensors including RGBD cameras.

https://github.com/AmmarkoV/AmmarServer - A lightweight http server for linux This can help in building a proper web interface ( instead of the simple one in RoboKernel/webinterface.c which relies in files shared between this and an Apache session )

https://github.com/AmmarkoV/OpenDroneA - A repository for the blueprint of a quadcopter drone A drone can be an alternative "body" for a robot vision system

https://github.com/AmmarkoV/AdvancedImageSearch - Command line tools that enable content-aware image browsing from the CLI

Implementation


RoboVision works ONLY on linux, and uses V4L2, wxWidgets, OpenGL, Festival, CMU Sphinx, OpenCV , Apache and other foss as extensions. I have made an effort to implement everything in a low enough level so that the console “daemon” mode will need only V4L2 support, and everything will be compiled together to reduce unneeded overheads. Lately I have added OpenCV as a library dependency to speed up development by using some thoroughly tested function calls and reducing the debugging surface. An effort has been also made to keep libraries clean of bloat and the whole project could easily be ported to another platform , but there is currently no benefit for the extra maintenance cost , so there are no ( and probably will never be :P ) plans for porting it to Windows or Mac.

Due to the complexity and combination of computer science fields involved ( Computer Vision , Natural Language Processing , Artificial Intelligence , Embedded Systems , Robotics [among the most important] ) the project has still not reached maturity and development is continued until an acceptable functionality level is reached..

Once you download the project ..

To automatically resolve the dependencies of the project run .Scripts/Setup/apt-get-guarddog-dependencies if you have a Debian/Ubuntu based distro ( package names may vary from version to version , but I try to update them to the last possible version ) , or using .Scripts/Setup/pacman-guarddog-dependencies for Arch and pacman based distros..

To compile it you will need to run the custom make bash script in the parent directory typing ./make from the shell while being on the root directory of the project ( NOT "make" BUT "./make" it is not a standard makefile but a bash script )

The IDE used for the development of the Project is Code::Blocks , and you can use the workspaces on the root directory that open the sub projects , in any case , once you download a fresh copy of the project be sure to run ./make first to compile any libraries that may be needed and are not part of the workspace

I Hope you'll find this project/repository useful ..!

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].