forked from nazikus/dalcim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
55 lines (42 loc) · 1.59 KB
/
README
File metadata and controls
55 lines (42 loc) · 1.59 KB
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
53
54
55
This is the code for:
-Discriminative Clustering for Image Co-segmentation
Armand Joulin, Francis Bach and Jean Ponce.
CVPR, 2010.
-Multi-Class Cosegmentation
Armand Joulin, Francis Bach and Jean Ponce.
CVPR, 2012.
Please these papers if you use this code (bibtex below).
REQUIREMENTS:
You need the vlfeat image toolbox by Andrea Vedaldi and Brian Fulkerson:
http://www.vlfeat.org/
You need Mark Schmidt's optimization toolbox:
http://www.di.ens.fr/~mschmidt/Software/minFunc.html
INSTALL:
run mexAll.m in MATLAB to compile all mex files
RUN IT:
There are three examples:
-coseg_example.m : classical coseg example
-multicoseg_example.m : multiclass coseg example
-grabcut_example.m : grabcut example on single image (note that you can use it on multiple images)
IMPORT OPTIONS:
param.onlyDiffrac : To run the cvpr'10 alone
param.initDiffac : Initialize the cvpr'12 cod by the cvpr'10 one
param.useMask : to use boundingboxes (i.e. grabcut)
typeFeat : either 'color' or 'sift'
typeKernel : either 'chi2' or 'Hellsinger'
CONTACT:
Please if you have questions or problems, contact:
armand.joulin at gmail.com
BIBTEX:
@InProceedings{JouBacPon12,
title = "Multi-Class Cosegmentation",
booktitle = "Proceedings of the Conference on Computer Vision and Pattern Recognition (CVPR)",
author = "A. Joulin and F. Bach and J. Ponce",
year = "2012"
}
@InProceedings{JouBacPonc10_cvpr,
title = "Discriminative Clustering for Image Co-segmentation",
booktitle = "Proceedings of the Conference on Computer Vision and Pattern Recognition (CVPR)",
author = "A. Joulin and F. Bach and J. Ponce",
year = "2010"
}