forked from BurhanUlTayyab/GSOC2018_RedHen
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Burhan Two
committed
Jul 4, 2018
1 parent
1aad307
commit c46367b
Showing
3 changed files
with
454 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#ifndef PROCESSING_H | ||
#define PROCESSING_H | ||
|
||
int detect_stopper_color(int r, int g, int b); | ||
void die(const char *errstr); | ||
char* russian_ocr(PIX* img, int index); | ||
void _process_frame_tickertext(AVFrame *frame, int width, int height, int index); | ||
void rgb2lab(float R, float G, float B,float *L, float *a, float *b); | ||
void late_fusion(PIX* img, int index); | ||
void writetofile(char* text, int index); | ||
|
||
#endif |
Oops, something went wrong.