All Projects → rozumden → fmo-cpp-demo

rozumden / fmo-cpp-demo

Licence: MIT license
Fast Moving Objects Detection (demo version)

Programming Languages

C++
36643 projects - #6 most used programming language
CMake
9771 projects

Projects that are alternatives of or similar to fmo-cpp-demo

ScoutAR
Augmented reality app displays nearby restaurant information in a live camera and map view.
Stars: ✭ 28 (-22.22%)
Mutual labels:  camera, mobile-app
Automated-Social-Distancing-Monitoring
automated social distancing monitoring system
Stars: ✭ 1 (-97.22%)
Mutual labels:  camera
blockbuster
The Machinima Studio mod
Stars: ✭ 108 (+200%)
Mutual labels:  camera
vision-camera-image-labeler
VisionCamera Frame Processor Plugin to label images using MLKit Vision
Stars: ✭ 62 (+72.22%)
Mutual labels:  camera
RxCamera2
Rx Java 2 wrapper for Camera2 google API
Stars: ✭ 27 (-25%)
Mutual labels:  camera
avp-bev-open
A pkg stiching around view images(4-6cameras) to generate bird's eye view.
Stars: ✭ 34 (-5.56%)
Mutual labels:  camera
react-native-swipe-cards-interaction
React native swipe cards interaction
Stars: ✭ 142 (+294.44%)
Mutual labels:  mobile-app
rocc
A Swift framework for remote control of digital Cameras
Stars: ✭ 68 (+88.89%)
Mutual labels:  camera
OctoPrint-CameraSettings
An OctoPrint plugin that allows a user to interactively change camera settings.
Stars: ✭ 31 (-13.89%)
Mutual labels:  camera
Yemek-Yemek-App
🍔 The Flutter App provides some foods, recipes, favorite recipes of users and suggestion of recipe.
Stars: ✭ 34 (-5.56%)
Mutual labels:  mobile-app
linux nvidia jetson
Allied Vision CSI-2 camera driver for NVIDIA Jetson Systems. Currently supporting Nano, TX2, AGX Xavier, and Xavier NX. Support for TX2 NX coming soon.
Stars: ✭ 68 (+88.89%)
Mutual labels:  camera
826-x-ip-camera
For the examination of an mipc connected camera
Stars: ✭ 49 (+36.11%)
Mutual labels:  camera
capacitor-vue-ionicv4-app
sample app using capacitor vuejs and ionicv4 components
Stars: ✭ 70 (+94.44%)
Mutual labels:  camera
Mobile.UP
Mobile.UP
Stars: ✭ 13 (-63.89%)
Mutual labels:  mobile-app
android-trinity
android-trinity is tiny proactive framework with much of the scaffolding code required to start a new Android Application.
Stars: ✭ 44 (+22.22%)
Mutual labels:  mobile-app
SmartsApp
💬📱 An End to End Encrypted Cross Platform messenger app.
Stars: ✭ 69 (+91.67%)
Mutual labels:  mobile-app
ProPicker
ProPicker is a file picker (image, video, file) library for Android. It helps you to pick any file and return the result in a convenient way
Stars: ✭ 25 (-30.56%)
Mutual labels:  camera
usgscsm
This repository stores USGS Community Sensor Model (CSM) camera models
Stars: ✭ 14 (-61.11%)
Mutual labels:  camera
nazar
Electronic component detection, identification and recognition system in realtime from camera image using react-native and tensorflow for classification along with Clarifai API with option to search the component details from web with description shown from Octopart fetched from server
Stars: ✭ 25 (-30.56%)
Mutual labels:  camera
goalkeeper
A beautiful app to help you achieve your goals🎯
Stars: ✭ 39 (+8.33%)
Mutual labels:  mobile-app

FMO detection (demo version)

The demonstrator displays the detection and processing of fast moving objects in real-time. Various properties of the objects can be estimated, like velocity, radius or trajectory. Users can toss various objects such as balls or darts, “shoot” any objects in front of a webcam at speeds that the objects will appear as long streaks. Properties of these blurred steaks allow us to describe movement and shape of the object. The detected objects and their trajectories are shown in real-time. If the real object size of the object in world units is known, then object velocity can be estimated. By default we assume a floorball, thus for objects of other sizes the estimation will be corrupted, but these settings can be easily changed (see Parameters section). The user should understand that velocity is found solely from video frames, whereas current methods (for example in tennis tournaments) usually use radars for this task. Additionally, the total number of detections is shown. This may be particularly interesting when a lot of small objects, which for example are not from the same class, are thrown in front of the camera. Applications of the methods like removal of fast moving objects can be shown in real-time. Attendees will be able to play with the system, testing its limits (small objects, very fast throws, shaking the camera).

Prerequisites

opencv 
boost

opencv recommended version 3.4.0 install by running

git clone https://github.com/Itseez/opencv.git
cd opencv
git checkout 3.4.0
...compile...

To compile

mkdir build
cd build
cmake ..
make
sudo make install

Compiled version for Windows: http://cmp.felk.cvut.cz/fmo/files/fmo-demo_windows_compiled.zip

Android mobile application (test version): http://cmp.felk.cvut.cz/fmo/app.apk

To run real-time on a camera

Integer after --camera for camera index.

fmo-desktop --camera 0 --utiademo

While running: space to stop, enter to make a step, "n" to enter name to score table, "1" to hide score table, "2" to show score table, "r" to start or stop recording, "h" for help subwindow, "a" and "m" to switch between automatic and manual mode, esc to exit.

fmo-desktop --camera 0 --demo

Minimalistic FMO detection.

fmo-desktop --camera 0 --tutdemo

Warning: starts recording by default, --no-record to fix it.

While running different modes switched by:

0 - default with recorded videos

1 - all detection for every frame

2 - detection steps: input frame, difference image, distance transform and local maxima, detections

3 - shows only the last frame where FMOs occurred and current frame in the corner

4 - shows frame which had the largest amount of FMOs during last 10 seconds

fmo-desktop --camera 0 --removal

FMO removal.

fmo-desktop --camera 0 --debug

While running: "d" for difference image, "i" for thresholded, "t" for distance transform, "o" for original image, etc.

Parameters

--exposure <float>

Set exposure value. Should be between 0 and 1. Usually between 0.03 and 0.1.

--fps <int>

Set number of frames per second.

--p2cm <float>

Set how many cm are in one pixel on object. Used for speedm estimation. More dominant than --radius.

--dfactor <float>

Differential image threshold factor. Default 1.0. Suggested value for FMO dataset is 0.45.

--radius <float>

Set object radius in cm. Used for speed estimation. Used if --p2cm is not specified. By default used for tennis/floorball: 3.6 cm.

To run for a specific video

fmo-desktop --input --demo

Examples

Help

fmo-desktop --help

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