フィルターのクリア

What is the solution to this error?

2 ビュー (過去 30 日間)
Ruwaida Lawgali
Ruwaida Lawgali 2022 年 3 月 8 日
コメント済み: Ruwaida Lawgali 2022 年 3 月 9 日
I am working on object detection, when I execute the code, I have errors. It is a ready code, I put the dataset in the same folder with the files code, also DefaultRoot.mat and CAfilelist.mat exists in the same folder.
But, I have this error:
>> SSDBExperiment_BuildCropDataset
Undefined function or variable 'DefaultRoot'.
Error in SSDBExperiment_BuildCropDataset (line 7)
D.Root =DefaultRoot;
.............................................................................
here a part of code,(SSDBExperiment_BuildCropDataset)
..............................................................................
positive image
negative image
What should I do, which lines need change to work correctly.
Thank you in advanced.

採用された回答

Cris LaPierre
Cris LaPierre 2022 年 3 月 8 日
編集済み: Cris LaPierre 2022 年 3 月 8 日
You are trying to use a function or variable in your code that has not been defined or is not accessible. Double check the contents of your DefaultRoot.mat file. It appears to not contain a variable named DefaultRoot.
The error is easy enough to demonstrate by trying to use a variable that has not been created.
A = 1;
% Works
B=A
B = 1
% Your error
b=a
Unrecognized function or variable 'a'.
  2 件のコメント
Ruwaida Lawgali
Ruwaida Lawgali 2022 年 3 月 8 日
Thank you
Ruwaida Lawgali
Ruwaida Lawgali 2022 年 3 月 9 日
DefaultRoot=load('DefaultRoot.mat'); %-->DefaultRoot
D.Root =DefaultRoot;
it works.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeComputer Vision Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by