Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: GR-PEACH_Camera_in_barcode levkov_ov7670
qr_finder.h
00001 #ifndef _DECODER_QR_FINDER_H_ 00002 #define _DECODER_QR_FINDER_H_ 00003 00004 #include "qrcode.h" 00005 00006 /* QR Code symbol finder state */ 00007 typedef struct qr_finder_s { 00008 unsigned s5; /* finder pattern width */ 00009 qr_finder_line line; /* position info needed by decoder */ 00010 00011 unsigned config; 00012 } qr_finder_t; 00013 00014 /* reset QR finder specific state */ 00015 static inline void qr_finder_reset (qr_finder_t *qrf) 00016 { 00017 qrf->s5 = 0; 00018 } 00019 00020 /* find QR Code symbols */ 00021 zbar_symbol_type_t _zbar_find_qr (zbar_decoder_t *dcode); 00022 00023 #endif 00024
Generated on Tue Jul 12 2022 18:54:12 by
1.7.2