Struct opencv::objdetect::QRCodeDetectorAruco
source · pub struct QRCodeDetectorAruco { /* private fields */ }
Implementations§
source§impl QRCodeDetectorAruco
impl QRCodeDetectorAruco
pub fn default() -> Result<QRCodeDetectorAruco>
sourcepub fn new(params: QRCodeDetectorAruco_Params) -> Result<QRCodeDetectorAruco>
pub fn new(params: QRCodeDetectorAruco_Params) -> Result<QRCodeDetectorAruco>
QR code detector constructor for Aruco-based algorithm. See cv::QRCodeDetectorAruco::Params
Trait Implementations§
source§impl Boxed for QRCodeDetectorAruco
impl Boxed for QRCodeDetectorAruco
source§impl Clone for QRCodeDetectorAruco
impl Clone for QRCodeDetectorAruco
source§impl Debug for QRCodeDetectorAruco
impl Debug for QRCodeDetectorAruco
source§impl Drop for QRCodeDetectorAruco
impl Drop for QRCodeDetectorAruco
source§impl From<QRCodeDetectorAruco> for GraphicalCodeDetector
impl From<QRCodeDetectorAruco> for GraphicalCodeDetector
source§fn from(s: QRCodeDetectorAruco) -> Self
fn from(s: QRCodeDetectorAruco) -> Self
Converts to this type from the input type.
source§impl GraphicalCodeDetectorTrait for QRCodeDetectorAruco
impl GraphicalCodeDetectorTrait for QRCodeDetectorAruco
fn as_raw_mut_GraphicalCodeDetector(&mut self) -> *mut c_void
source§impl GraphicalCodeDetectorTraitConst for QRCodeDetectorAruco
impl GraphicalCodeDetectorTraitConst for QRCodeDetectorAruco
fn as_raw_GraphicalCodeDetector(&self) -> *const c_void
source§fn detect(
&self,
img: &impl ToInputArray,
points: &mut impl ToOutputArray
) -> Result<bool>
fn detect( &self, img: &impl ToInputArray, points: &mut impl ToOutputArray ) -> Result<bool>
Detects graphical code in image and returns the quadrangle containing the code. Read more
source§fn decode(
&self,
img: &impl ToInputArray,
points: &impl ToInputArray,
straight_code: &mut impl ToOutputArray
) -> Result<Vec<u8>>
fn decode( &self, img: &impl ToInputArray, points: &impl ToInputArray, straight_code: &mut impl ToOutputArray ) -> Result<Vec<u8>>
Decodes graphical code in image once it’s found by the detect() method. Read more
source§fn detect_and_decode(
&self,
img: &impl ToInputArray,
points: &mut impl ToOutputArray,
straight_code: &mut impl ToOutputArray
) -> Result<Vec<u8>>
fn detect_and_decode( &self, img: &impl ToInputArray, points: &mut impl ToOutputArray, straight_code: &mut impl ToOutputArray ) -> Result<Vec<u8>>
Both detects and decodes graphical code Read more
source§fn detect_multi(
&self,
img: &impl ToInputArray,
points: &mut impl ToOutputArray
) -> Result<bool>
fn detect_multi( &self, img: &impl ToInputArray, points: &mut impl ToOutputArray ) -> Result<bool>
Detects graphical codes in image and returns the vector of the quadrangles containing the codes. Read more
source§fn decode_multi(
&self,
img: &impl ToInputArray,
points: &impl ToInputArray,
decoded_info: &mut Vector<String>,
straight_code: &mut impl ToOutputArray
) -> Result<bool>
fn decode_multi( &self, img: &impl ToInputArray, points: &impl ToInputArray, decoded_info: &mut Vector<String>, straight_code: &mut impl ToOutputArray ) -> Result<bool>
Decodes graphical codes in image once it’s found by the detect() method. Read more
source§fn detect_and_decode_multi(
&self,
img: &impl ToInputArray,
decoded_info: &mut Vector<String>,
points: &mut impl ToOutputArray,
straight_code: &mut impl ToOutputArray
) -> Result<bool>
fn detect_and_decode_multi( &self, img: &impl ToInputArray, decoded_info: &mut Vector<String>, points: &mut impl ToOutputArray, straight_code: &mut impl ToOutputArray ) -> Result<bool>
Both detects and decodes graphical codes Read more
source§impl QRCodeDetectorArucoTrait for QRCodeDetectorAruco
impl QRCodeDetectorArucoTrait for QRCodeDetectorAruco
fn as_raw_mut_QRCodeDetectorAruco(&mut self) -> *mut c_void
source§fn set_detector_parameters(
&mut self,
params: QRCodeDetectorAruco_Params
) -> Result<QRCodeDetectorAruco>
fn set_detector_parameters( &mut self, params: QRCodeDetectorAruco_Params ) -> Result<QRCodeDetectorAruco>
Detector parameters setter. See cv::QRCodeDetectorAruco::Params
source§fn get_aruco_parameters(&mut self) -> Result<DetectorParameters>
fn get_aruco_parameters(&mut self) -> Result<DetectorParameters>
Aruco detector parameters are used to search for the finder patterns.
source§fn set_aruco_parameters(&mut self, params: &DetectorParameters) -> Result<()>
fn set_aruco_parameters(&mut self, params: &DetectorParameters) -> Result<()>
Aruco detector parameters are used to search for the finder patterns.
source§impl QRCodeDetectorArucoTraitConst for QRCodeDetectorAruco
impl QRCodeDetectorArucoTraitConst for QRCodeDetectorAruco
fn as_raw_QRCodeDetectorAruco(&self) -> *const c_void
source§fn get_detector_parameters(&self) -> Result<QRCodeDetectorAruco_Params>
fn get_detector_parameters(&self) -> Result<QRCodeDetectorAruco_Params>
Detector parameters getter. See cv::QRCodeDetectorAruco::Params
impl Send for QRCodeDetectorAruco
Auto Trait Implementations§
impl RefUnwindSafe for QRCodeDetectorAruco
impl !Sync for QRCodeDetectorAruco
impl Unpin for QRCodeDetectorAruco
impl UnwindSafe for QRCodeDetectorAruco
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more