-
Notifications
You must be signed in to change notification settings - Fork 2
/
README
46 lines (29 loc) · 1.93 KB
/
README
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
Finding Clones
What is it?
-----------
Finding clones is a dissertation for the School of Informatics of University of Edinburgh. The main purpose
is to implement three efficient image algorithms for finding the same objects in a given 2-D image. The
implementation will be in ANSI C language. The source code of reading the images and evaluating them is provided
by the algorithm contest home page organised by SIG PRMU (Pattern Recognition and Media Understanding)
of the IEICE (Institute of Electronics, Information and Communication Engineers), Japan in 2009. The site is
[http://www2c.comm.eng.osaka-u.ac.jp/~alcon2009/index.php].
Documentation
-------------
Installation
------------
Source Files
------------
This project includes the following files:
Filename Type of file Description
-------- ------------- ------------
alcon2009.h Contest file A general purpose header file with structures necessary
for the other source files of the contest.
evaluation.h Contest file A header file for evaluating the implemented algorithms.
evaluation.c Contest file The source file for evaluating the implemented algorithms.
pnm.h Contest file Header file for reading pnm images.
pnm.c Contest file The source file for reading pnm images.
main.c Contest file The main source file.
my_alg.c Contest file The source file for implementing the algorithms.
makefile Contest file The make file for building the project.
PPM_PGM_PBM_File_format.txt Info/Text file Information regarding the structure of PPM/PGM/PBM file
format.