dashboard
repositories
filestore
activity
search
login
main
/
ok335x
OK335X Board
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
update linux-3.2.0-ok335x.patch, fix build on ubuntu-18.04 bug
Guo Wenxue
2020-06-25
7f5a1d7649ccbb12fc54f30086facf36d7bfed9d
[ok335x.git]
/
program
/
opencv-zbar
/
cvzbar.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include<stdio.h>
#include"decoder.h"
int main()
{
struct code_msg msg;
if(decoder(0,&msg)<0)
return -1;
printf("type:%s\n",msg.get_type_name);
printf("data:%s\n",msg.get_data);
return 0;
}