diff options
Diffstat (limited to 'report')
-rw-r--r-- | report/paper.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/report/paper.md b/report/paper.md index 45d7eb2..8e821df 100644 --- a/report/paper.md +++ b/report/paper.md @@ -2,7 +2,9 @@ We randomly select 100k descriptors for K-means clustering for building the visual vocabulary (due to memory issue). Open the main_guideline.m and select/load the dataset. ->> [data_train, data_test] = getData('Caltech'); % Select dataset +``` +[data_train, data_test] = getData('Caltech'); +``` Set 'showImg = 0' in getData.m if you want to stop displaying training and testing images. Complete getData.m by writing your own lines of code to obtain the visual vocabulary and the bag-of-words histograms for both training and testing data. Show, measure and |