vviz 0.3.0

Rapid prototyping GUI, and visual printf-style debugging for computer vision development
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Rapid prototyping GUI, and visual printf-style debugging for computer vision development.

#![warn(missing_docs)]

pub mod app;
pub mod common;
pub mod entities;
pub mod gui;
pub mod manager;
pub mod math;
pub mod utilities;

// Makes sure that example code in the readme compiles.
#[doc = include_str!("../README.md")]
#[cfg(doctest)]
pub struct ReadmeDoctests;