-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmakeWordHistograms.h
52 lines (47 loc) · 1.43 KB
/
makeWordHistograms.h
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
51
52
/*
* ArchiveVision: Compter Vision Engine for Digital Archives
*
* file: makeWordHistograms.h
*
* Reads a library of images and outputs visual word documents
* for the library.
*
* Copyright (C) 2012 Carl Stahmer ([email protected])
* Early Modern Center, University of California, Santa Barbara
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the Creative Commons licence, version 3.
*
* See http://creativecommons.org/licenses/by/3.0/legalcode for the
* complete licence.
*
* This program is distributed WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
*/
#ifndef MAKEWORDHISTOGRAMS_H_
#define MAKEWORDHISTOGRAMS_H_
#include "cv.h"
#include "highgui.h"
#include "ml.h"
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include <vector>
#include <string>
#include <sys/stat.h>
#include "opencv2/objdetect/objdetect.hpp"
#include "opencv2/features2d/features2d.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/calib3d/calib3d.hpp"
#include "opencv2/nonfree/nonfree.hpp"
#include "opencv2/imgproc/imgproc_c.h"
#include "opencv2/legacy/legacy.hpp"
#include "opencv2/legacy/compat.hpp"
#include "helper.cpp"
#include "imgextract.cpp"
#include "imageDocument.cpp"
int main(int argc, char* argv[]);
#endif /*MAKEWORDHISTOGRAMS_H_*/