Skip to content

Commit

Permalink
Fix data download script
Browse files Browse the repository at this point in the history
The download link is now fixed for downloading pedestrian dataset as provided by @davidbp in JuliaImages#44.
The odd size of 65x129 is also fixed as reported by @colbec in JuliaImages#48.
  • Loading branch information
Deepank308 authored Jan 6, 2019
1 parent bc0c60d commit 7c50fca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/tutorials/object_detection.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ the classifier on an intermediate representation of the image instead of the pix
captures information which is useful for classification but is invariant to small changes in illumination and occlusions. HOG descriptor is a gradient-based
representation which is invariant to local geometric and photometric changes (i.e. shape and illumination changes) and so is a good choice for our problem. In fact HOG descriptors are widely used for object detection.

Download the script to get the training data [here](https://drive.google.com/open?id=0B9V0KF3ZHWtWR1dBR2VZUDctUGc). Download tutorial.zip, decompress it and run get_data.bash. (Change the variable `path_to_tutorial` in preprocess.jl and path to julia executable in get_data.bash). This script will download the required datasets. We will start by loading the data and computing HOG features of all the images.
Download the script to get the training data [here](https://drive.google.com/file/d/11G_9zh9N-0veQ2EL5WDGsnxRpihsqLX5/view?usp=sharing). Download tutorial.zip, decompress it and run get_data.bash. (Change the variable `path_to_tutorial` in preprocess.jl and path to julia executable in get_data.bash). This script will download the required datasets. We will start by loading the data and computing HOG features of all the images.

```julia
using Images, ImageFeatures
Expand Down

0 comments on commit 7c50fca

Please sign in to comment.