wincam

Crates.iowincam
lib.rswincam
version0.1.3
sourcesrc
created_at2024-08-09 09:37:56.642612
updated_at2024-08-14 20:30:39.036346
descriptionThis create aims to crate an easy way to capture images.
homepage
repositoryhttps://github.com/marci1175/wincam
max_upload_size
id1330645
size46,726
Varga Marcell (marci1175)

documentation

README

Capture images with your webcam in the easiest way:

  • Simplicity:

    This crate builds upon simplicity therefor is very easy to use. The difficulties one might have to encounter while trying to achieve a similar result is nonexistent.
  • Performance:

    The crate uses opencv's binding therefor providing a fast and efficient way of communicating with the underlying apis.
  • Support:

    Despite the name this crate can be used on all platforms supported by OpenCV.
  • Example:

    Create a new Webcam instance, and retrive an image in the form of raw bytes:
    //Crate webcam handle
    let mut webcam = Webcam::new_def_auto_detect().unwrap();
    
    //Get raw image bytes
    let raw_image_bytes = webcam.get_frame().unwrap();
    
    //Handle bytes . . .
    
Commit count: 0

cargo fmt