Here are the Papart examples, to show atomic features. Papart stands for PAPer Augmented Reality Toolkit. The core library is available on this repository.
See update description in PapARt repository.
This new release brings many new features. It is now easier to place PaperScreen on the table with the new TableScreen class.
The color tracking and particularly the circular tracking is quite robust and enable the creation of physical interfaces with a high detection rate. There will be a complete tutorial on how to create a mixed reality interface with touch and circle tracking.
We work to improve the current API, as it will be part of the coming Nectar platform. The main motivation for Nectar to push further the possibilites of SAR with PapARt. The rendering will not be limited to Processing for rendering with the Unity3D Nectar plugin. The plugin is in internal test/development phase, and is already quite promising.
- Color tracking, with dedicated color calibration.
TableScreen
: Place a screen relative to the table location.- New tracking: colored object (any shape), circular shape, marker, TouchSimulator, mouse.
- Unified tracking handling for Skatolo.
- Nectar compatiblity: many new features are coming through the nectar platform such as more marker trackers, QR code reader, barcode reader.
- API without Processing windows is expanding for Nectar.
- The method
loadSketches
is removed. This method created way too many magical instances. You need to instanciate the PaperScreen and PaperTouchScreen yourself now. - New examples: 3D mapping, circle detection, color detection, video player, advanced gui.
- The finger tracking is less magical also as we got many new ways to activate buttons. You get an object to retreive the touchList.
TouchDetectionDepth fingerDetection;
public void setup() {
Papart.projection(this);
fingerDetection = papart.loadTouchInput().initHandDetection();
new MyApp();
papart.startTracking();
}
TouchList fingerTouchs = getTouchListFrom(fingerDetection);
for (Touch t : fingerTouchs) {
PVector p = t.position;
ellipse(p.x, p.y, 10, 10);
}
To be updated.
This library and examples are the result of research projects from Inria and Bordeaux University.
- Inria project : website
Video from the research project:
- Master / main is the only current branch.
This code is propriety of CATIE, Jérémy Laviole, Inria, and Bordeaux University.