R-CNN stop sign detector code

12 visualizaciones (últimos 30 días)
Euseb Martinez
Euseb Martinez el 8 de Nov. de 2016
Comentada: Walter Roberson el 11 de Ag. de 2020
I am trying understand the code for stop sign detector using cnn but i do no identify the "Command" in below sentencie of the program: "helperCIFAR10Data.download(url,cifar10Data); I look for help but it shows an error msg
  9 comentarios
Jun Zhang
Jun Zhang el 18 de Mzo. de 2019
I have the same problem.
>> whos -file data_batch_1.mat
whos -file data_batch_2.mat
whos -file data_batch_3.mat
whos -file data_batch_4.mat
whos -file data_batch_5.mat
Name Size Bytes Class Attributes
batch_label 1x21 42 char
data 10000x3072 30720000 uint8
labels 10000x1 10000 uint8
Name Size Bytes Class Attributes
batch_label 1x21 42 char
data 10000x3072 30720000 uint8
labels 10000x1 10000 uint8
Name Size Bytes Class Attributes
batch_label 1x21 42 char
data 10000x3072 30720000 uint8
labels 10000x1 10000 uint8
Name Size Bytes Class Attributes
batch_label 1x21 42 char
data 10000x3072 30720000 uint8
labels 10000x1 10000 uint8
Name Size Bytes Class Attributes
batch_label 1x21 42 char
data 10000x3072 30720000 uint8
labels 10000x1 10000 uint8
Walter Roberson
Walter Roberson el 18 de Mzo. de 2019
Could you clarify what problem you are having? Please post your code.

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 8 de Nov. de 2016
That code requires R2016b or later.
  8 comentarios
Swati Prakash
Swati Prakash el 11 de Ag. de 2020
I have installed MATLAB 2020 but also it is giving error
Unable to resolve the name helperCIFAR10Data.load.
I have given the fullpath
addpath(['D','/examples','/deeplearning_shared','/main']);
location = 'D:\examples\deeplearning_shared\main\helperCIFAR10Data.m';
[trainingImages, trainingLabels, testImages, testLabels] = helperCIFAR10Data.load(location);
Walter Roberson
Walter Roberson el 11 de Ag. de 2020
These days,
fullfile(matlabroot,'examples','deeplearning_shared','main', 'helperCIFAR10Data.m')

Iniciar sesión para comentar.

Más respuestas (5)

Vignesh Ganapathiraman
Vignesh Ganapathiraman el 7 de Mayo de 2018
Or you can just add the path at the start
addpath([matlabroot,'/examples','/vision','/main']);
  1 comentario
Zekun
Zekun el 20 de Abr. de 2019
Great! This solved my problem!~ Thanks!

Iniciar sesión para comentar.


Ali
Ali el 1 de Nov. de 2017
Editada: Walter Roberson el 1 de Nov. de 2017
Hi guys,
The file is really at the directory provided by Walter Roberson, however the error message still there.
to overcome this problem, you may follow these steps:
  1. go to fullfile(matlabroot,'examples', 'vision', 'main', helperCIFAR10Data.m', find the file there and open it.
  2. inside 'helperCIFAR10Data.m' you will find 4 functions (download,load, loadBatchAsFourDimensionalArray, convertLabelsToCategorical). Copy each function to a new script and save them. you can give 'load' function to another name to avoid conflict with the same Matlab-builtin function.
  3. use the code provided on Mathworks website but remove the prefix'helperCIFAR10Data'
% Download CIFAR-10 data to a temporary directory
location = 'C:\Users\JICA\Desktop\Object Detection Using Deep Learning\';
url = 'https://www.cs.toronto.edu/~kriz/cifar-10-matlab.tar.gz';
download(url, location);
%%Load
% Load the CIFAR-10 training and test data.
[trainingImages, trainingLabels, testImages, testLabels] = Dataloading(location);
Each image is a 32x32 RGB image and there are 50,000 training samples.
size(trainingImages)
hope this helps
Ali
  5 comentarios
bhanu prakash
bhanu prakash el 5 de Mzo. de 2019
when i am copying each function in a seperate script it is giving an error of "Not enough arguments in function". how can i resolve this issue?
Walter Roberson
Walter Roberson el 5 de Mzo. de 2019
Please show which function you are calling, and show how you are calling it.
Did you follow Ali's suggestion to rename load ? That would include changing the references to the function so that you do not accidentally invoke MATLAB's built-in load()

Iniciar sesión para comentar.


巴山学长
巴山学长 el 2 de Nov. de 2017
Just copy the 'helperCIFAR10Data.m' to your temporary directory, and then run. Good luck!

Saif Hussein
Saif Hussein el 28 de Sept. de 2017
Editada: Walter Roberson el 19 de Oct. de 2017
Undefined variable "helperCIFAR10Data" or class "helperCIFAR10Data.load".
l have email the matlab team many times, they didn't solve the problem. l do believe the problem with matlab copy under Mac,
  3 comentarios
Donnie Agema
Donnie Agema el 14 de Oct. de 2017
I am using MATLAB version R2017b and getting the same error. Any solution?
Walter Roberson
Walter Roberson el 19 de Oct. de 2017
Editada: Walter Roberson el 30 de En. de 2019
In R2017b I find it at
fullfile(matlabroot,'examples', 'vision', 'main', 'helperCIFAR10Data.m')
This requires the Computer Vision toolbox.

Iniciar sesión para comentar.


Nicola Gaburro
Nicola Gaburro el 2 de Oct. de 2017
I'm having the same issue with Matlab R2017b When running the command
helperCIFAR10Data.download(url, cifar10Data);
it shows the error
Undefined variable "helperCIFAR10Data" or class "helperCIFAR10Data.download". Seems like helperCIFAR10Data class is missing
  6 comentarios
Dora Craba
Dora Craba el 16 de Mayo de 2020
Thank you for your answer. Now I get another error:
Unable to resolve the name helperCIFAR10Data.load.
Error in prova_dataset (line 9)
[trainingImages,trainingLabels,testImages,testLabels] = helperCIFAR10Data.load(cifar10Data);
Walter Roberson
Walter Roberson el 17 de Mayo de 2020
The helperCIFAR10Data class must be on your MATLAB path.
addpath(fullfile(matlabroot,'examples','deeplearning_shared','main'))

Iniciar sesión para comentar.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by