Hi All, I'm using Julia for the very first time and am trying to figure out the code given at https://www.kaggle.com/c/street-view-getting-started-with-julia/details/julia-tutorial . I am unable to import images using the given code:
img = imread(nameFile) temp = float32sc(img) if ndims(temp) == 3 temp = mean(temp.data, 1) end Can somebody please guide me as they would to a noob? I need to import the entire training dataset given in the above mentioned kaggle competition..
