Skip to content

Instantly share code, notes, and snippets.

View victoryforphil's full-sized avatar
:shipit:
Simulating Stuff @ Zipline

Alex Carter victoryforphil

:shipit:
Simulating Stuff @ Zipline
View GitHub Profile
@dtaillard
dtaillard / OpencvToVuforia.java
Last active November 28, 2017 04:21
Convert Vuforia frames to OpenCV matrices
public Mat readFrame() {
VuforiaLocalizer.CloseableFrame frame;
Image rgb = null;
try {
// grab the last frame pushed onto the queue
frame = vuforia.getFrameQueue().take();
} catch (InterruptedException e) {
Log.d(LOG_TAG, "Problem taking frame off Vuforia queue");
e.printStackTrace();
@graphitemaster
graphitemaster / T0.md
Last active January 6, 2025 08:29
Vulkan Tutorial

Tutorial 0

What is Vulkan

Vulkan is a low-overhead, cross-platform 3D graphics and compute API.

Vulkan targets

Vulkan targets high-performance realtime 3D graphics applications such as games and interactive media across multiple platforms providing higher performance and lower CPU usage.