Effacer les filtres
Effacer les filtres

What is the solution to this error?

1 vue (au cours des 30 derniers jours)
Ruwaida Lawgali
Ruwaida Lawgali le 8 Mar 2022
What this error main?
>> SSDBExperiment_BuildCropDataset
imageLabelingSession0 positives were selected
Generating the set of negative crop locations at 6 per positive...
Output argument "selected_nonobjs_bboxs" (and maybe others) not assigned during call to
"SSDBExperiment_BuildCropDataset>GenerateRandNegativeBBoxSet".
Error in SSDBExperiment_BuildCropDataset (line 56)
[nBBoxs,nIdxs] = GenerateRandNegativeBBoxSet(pBBoxs, ...
>>
..........................
I have file with name (GenerateRandNegativeBBoxSet)
My dataset contains images, I made image labeler for positive and negative images, then save it as session.
(+)
(-)
What should I do, which lines need change to work correctly.
Thank you in advanced.

Réponse acceptée

Benjamin Thompson
Benjamin Thompson le 8 Mar 2022
If the selected_bboxs argument is empty, then GenerateRandNegativeBBoxSet will not enter the loop where the two output variables are created. Then the function returns no outputs to the caller. To be sure that the two outputs are always defined, initialize them to empty values at the beginning of the function:
selected_nonobjs_bboxs = [];
idxout = [];
  2 commentaires
Ruwaida Lawgali
Ruwaida Lawgali le 8 Mar 2022
Thank you
Benjamin Thompson
Benjamin Thompson le 9 Mar 2022
You are welcome. If this answer is good, please mark it as accepted.

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by