All Projects → verlab → GeobitNonrigidDescriptor_ICCV_2019

verlab / GeobitNonrigidDescriptor_ICCV_2019

Licence: GPL-3.0 license
C++ implementation of the nonrigid descriptor Geobit presented at ICCV 2019 "GEOBIT: A Geodesic-Based Binary Descriptor Invariant to Non-Rigid Deformations for RGB-D Images"

Programming Languages

Jupyter Notebook
11667 projects
C++
36643 projects - #6 most used programming language
c
50402 projects - #5 most used programming language
CMake
9771 projects

Projects that are alternatives of or similar to GeobitNonrigidDescriptor ICCV 2019

ACVR2017
An Innovative Salient Object Detection Using Center-Dark Channel Prior
Stars: ✭ 20 (+81.82%)
Mutual labels:  rgbd, iccv
fastDesp-corrProp
Fast Descriptors and Correspondence Propagation for Robust Global Point Cloud Registration
Stars: ✭ 16 (+45.45%)
Mutual labels:  descriptors
lcd
[AAAI'20] LCD: Learned Cross-Domain Descriptors for 2D-3D Matching
Stars: ✭ 93 (+745.45%)
Mutual labels:  descriptors
StructureNet
Markerless volumetric alignment for depth sensors. Contains the code of the work "Deep Soft Procrustes for Markerless Volumetric Sensor Alignment" (IEEE VR 2020).
Stars: ✭ 38 (+245.45%)
Mutual labels:  rgbd
image features
Extract deep learning features from images using simple python interface
Stars: ✭ 84 (+663.64%)
Mutual labels:  feature-extraction
face-recognition
얼굴 인식에 대한 기술 동향 및 관련 모델 자료
Stars: ✭ 38 (+245.45%)
Mutual labels:  iccv
diode-devkit
DIODE Development Toolkit
Stars: ✭ 58 (+427.27%)
Mutual labels:  rgbd
time-series-classification
Classifying time series using feature extraction
Stars: ✭ 75 (+581.82%)
Mutual labels:  feature-extraction
TailCalibX
Pytorch implementation of Feature Generation for Long-Tail Classification by Rahul Vigneswaran, Marc T Law, Vineeth N Balasubramaniam and Makarand Tapaswi
Stars: ✭ 32 (+190.91%)
Mutual labels:  iccv
face-authentication
Face-authentication system enterely written on C++ with OpenCV and Qt third party library. Face-antispoofing procedure is included.
Stars: ✭ 49 (+345.45%)
Mutual labels:  feature-extraction
RGB-D-SLAM
Work in Progress. A SLAM implementation based on plane and superquadric tracking.
Stars: ✭ 23 (+109.09%)
Mutual labels:  rgbd
SIFT-BoF
Feature extraction by using SITF+BoF.
Stars: ✭ 22 (+100%)
Mutual labels:  feature-extraction
DepthKit-for-Max
A patch for using DepthKit volumetric videos in Max/MSP/Jitter
Stars: ✭ 21 (+90.91%)
Mutual labels:  rgbd
Graph-Based-TC
Graph-based framework for text classification
Stars: ✭ 24 (+118.18%)
Mutual labels:  feature-extraction
mildnet
Visual Similarity research at Fynd. Contains code to reproduce 2 of our research papers.
Stars: ✭ 76 (+590.91%)
Mutual labels:  feature-extraction
SPHORB
feature detector and descriptor for spherical panorama
Stars: ✭ 66 (+500%)
Mutual labels:  feature-extraction
Guided-I2I-Translation-Papers
Guided Image-to-Image Translation Papers
Stars: ✭ 117 (+963.64%)
Mutual labels:  iccv
ESANet
ESANet: Efficient RGB-D Semantic Segmentation for Indoor Scene Analysis
Stars: ✭ 154 (+1300%)
Mutual labels:  rgbd
pyHSICLasso
Versatile Nonlinear Feature Selection Algorithm for High-dimensional Data
Stars: ✭ 125 (+1036.36%)
Mutual labels:  feature-extraction
50-days-of-Statistics-for-Data-Science
This repository consist of a 50-day program. All the statistics required for the complete understanding of data science will be uploaded in this repository.
Stars: ✭ 19 (+72.73%)
Mutual labels:  feature-extraction

License Open In Colab

GEOBIT: Geodesic Binary Descriptor for Nonrigid RGB-D Images
[Project Page] [Paper] [Container] [RGB-D Dataset]

This repository contains the original implementation of the descriptor "GEOBIT: A Geodesic-Based Binary Descriptor Invariant to Non-Rigid Deformations for RGB-D Images", presented at ICCV 2019. GeoBit is a handcrafted binary descriptor that combines appearance and geometric information from RGB-D images to handle isometric non-rigid deformations. It leverages geodesic isocurve information, from heat flow in the surface manifold, to select the feature binary tests.

If you find this code useful for your research, please cite the paper:

@INPROCEEDINGS{nascimento2019iccv,
  author={Erickson R. {Nascimento} and Guilherme {Potje} and Renato {Martins} and Felipe {Cadar} and Mario F. M. {Campos} and Ruzena {Bajcsy}},
  booktitle={2019 IEEE/CVF International Conference on Computer Vision (ICCV)}, 
  title={GEOBIT: A Geodesic-Based Binary Descriptor Invariant to Non-Rigid Deformations for RGB-D Images}, 
  year={2019},
  volume={},
  number={},
  pages={10003-10011},
  doi={10.1109/ICCV.2019.01010}}

I - Ready to Use Container

We provide a ready to use container image available at radac98/geobit-iccv19. The container is already configured and contains all precompiled binaries and the provided image sample. The following instructions are for using the container in Singularity (if you do not have yet Singularity installed, please check INSTALL_SINGULARITY.md for detailed instructions).

Get the container image:

sudo singularity build --sandbox geobit-iccv19 docker://radac98/geobit-iccv19

Then for computing the descriptors from the RGB-D image "example/cloud_1-rgb.png" in the keypoints defined defined at "cloud_1.csv":

sudo singularity exec geobit-iccv19 /code/GeobitNonrigidDescriptor_ICCV_2019/build/nonrigid_descriptor -inputdir /code/GeobitNonrigidDescriptor_ICCV_2019/example -refcloud cloud_1 -clouds cloud_1 -datasettype real

II - Colab Notebook Open In Colab

We also provide a Google Colab Notebook which runs the code entirely in the platform, showing a complete matching example between two frames using the generated descriptors saved in HDF5 file format. Below we show a matching example generated by the notebook :

III - Local Installation Alternative

The install steps were tested on Ubuntu 16.04. Please follow the following steps to install all required libriaries and to compile the descriptor code:

  • Install Dependencies

    CMake

    sudo apt install cmake

    OpenCV

    # Install minimal prerequisites (Ubuntu 18.04 as reference)
    sudo apt update && sudo apt install -y cmake g++ wget unzip
    # Download and unpack sources
    wget -O opencv.zip https://github.com/opencv/opencv/archive/master.zip
    wget -O opencv_contrib.zip https://github.com/opencv/opencv_contrib/archive/master.zip
    unzip opencv.zip
    unzip opencv_contrib.zip
    # Create build directory and switch into it
    mkdir -p build && cd build
    # Configure
    cmake -DOPENCV_EXTRA_MODULES_PATH=../opencv_contrib-master/modules ../opencv-master
    # Build
    cmake --build .
    cmake --install .

    PCL

    sudo apt install libpcl-dev

    Suitsparce

    sudo apt-get install libsuitesparse-dev
  • Compiling

mkdir build
cd build
cmake ..
  • Testing
./nonrigid_descriptor -inputdir ../example -refcloud cloud_1 -clouds cloud_1 -datasettype real

RGB-D Dataset

The dataset is available at https://www.verlab.dcc.ufmg.br/descriptors/

Dataset of Deformable RGB-D Images (Presented at ICCV’19):

Kinect 1 Sequences (38 MB) : This dataset contains six different real-world objects under different deformation levels and illumination changes. The RGB-D images were acquired at 640 x 480 resolution with a Kinect 1 sensor. Each image has approximately 50 manually annotated keypoints.

Simulation (26 MB) : This dataset is composed of simulated RGB-D sequences (640 x 480 pixels) with a physics cloth engine simulation. Several textured clothes are subjected to challenging non-rigid deformation, illumination, rotation and scale changes. The keypoints in this sequence are selected with Harris score in the first reference texture image, and their exact correspondence overtime are tracked in the simulation.

Extended Dataset (Journal Submission under Peer Review):

Kinect 2 Sequences (1.1 GB) : This dataset contains five additional real-world objects acquired with a Kinect 2 sensor at 1920 x 1080 resolution images. We provide image sequences for each of the five objects containing different levels of deformations: light, medium and heavy deformations. Accurate 80 pointwise correspondences are automatically obtained with a motion capture system.

Dataset File Format: All datasets follow the same format: Color images are stored as 8-bit PNG and depth images are stored as 16-bit PNG images in millimetres. The intrinsics.xml file contains the intrinsic parameters of the camera, allowing the reconstruction of the pointcloud. Each image also has a respective .csv file, where each line consists of a keypoint number (ID), its 2D image coordinates and a boolean flag indicating if the keypoint is visible in the current keyframe. The keypoints are selected in the reference image, therefore all keypoints are visible in the reference frame.

License & Disclaimer

This is research code, expect that it can change and any fitness for a particular purpose is disclaimed. This software is under GNU General Public License Version 3 (GPLv3).

VeRLab: Laboratory of Computer Vison and Robotics https://www.verlab.dcc.ufmg.br

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