1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//! Extract data from an image

use failure::Fail;

mod qr;

pub use self::qr::QRExtractor;

/// Extract data from a prepared image, given the location as determined by the [`Detect`] step
///
/// PREPD type should be the type if the image returned from the [`Prepare`] implementation
/// LOC type should be the relevant enclosed type from the [`Location`] enum
/// DATA type must equal the input type of the matching [`Decode`] implementation
///
/// Pre-implemented Extracts provided by this library that are included in the default [`Decoder`]:
/// * [`QRExtractor`]
///
/// # Example
/// ```
/// # extern crate bardecoder;
/// # extern crate image;
/// # use bardecoder::util::qr::{QRLocation, QRData, QRError};
/// # use image::GrayImage;
/// use bardecoder::extract::Extract;
///
/// struct MyExtractor {}
///
/// impl Extract<GrayImage, QRLocation, QRData, QRError> for MyExtractor {
///     fn extract(&self, prepared: &GrayImage, loc: QRLocation) -> Result<QRData, QRError> {
///         // extract data here
/// #        Ok(QRData::new(vec![], 0))
///     }
/// }
/// ```
///
/// with the corresponding impl Decode being the Example [`here`]
///
/// [`Location`]: ../detect/enum.Location.html
/// [`Decode`]: ../decode/trait.Decode.html
/// [`Decoder`]: ../struct.Decoder.html
/// [`Detect`]: ../detect/trait.Detect.html
/// [`Prepare`]: ../prepare/trait.Prepare.html
/// [`here`]: ../decode/trait.Decode.html
pub trait Extract<PREPD, LOC, DATA, ERROR>
where
    ERROR: Fail,
{
    /// Does the actual extracting
    fn extract(&self, prepared: &PREPD, loc: LOC) -> Result<DATA, ERROR>;
}