Giter Site home page Giter Site logo

augmented-reality's Introduction

Augmented-Reality

This repository contains a prototype Augmented reality application using OpenCV and OpenGL python. Aim of this project is to make a modular AR framework using python which works on wide variety of markers and on which we can place wide variety of graphical elements. The application takes a .json file as an input and uses that to find apropriate type of marker.

Installation / Usage

  • Clone the git repo
  • Install the modules
    pip install -r requirements.txt
  • Run main.py (Default values)

Architecture

  • Basic application process blocks

Depending on the JSON parameters the application will be able to detect 'Aruco' or 'NFT' markers.

  • Marker detection process

Input JSON

There are two seperate types of JSON depending on the type of marker tracked. The default parameter JSON files are placed in the data folder.

The paths to the calibration file and marker can be changed

  • NFT marker (nft_params.json)

      {    
        "calibration_path" : "data/calibration.yaml",
        
        "marker_type" : "nft",    
        "marker_params" :{      
          "marker_path" : "assets/stones.jpg",    
          "feature_type" : "ORB",                  // ORB , AKAZE
          "matcher_type" : "flann",                // flann , bfm
          "debug_draw" : true    
        },
      
        "3d_object" : {    
          "obj_path" : ""    
        }
      
      }
    
  • Aruco marker (aruco_params.json)

      {   
        "calibration_path" : "data/calibration.yaml",    
        
        "marker_type" : "aruco",    
        "marker_params" :{   
          "debug_draw" : true   
        },
      
        "3d_object" : {   
          "obj_path" : ""   
        }   
    
      }
    

Authors

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.