Error executing [ap, recall, precision] = evaluateDetectionPrecision(results, expectedResults);
조회 수: 1 (최근 30일)
이전 댓글 표시
I have modified the FasterRCNN tutorial and have successfully created a detector, however when I get to the testing step I cannot execute the final code. The errors I get are below :
Error using vision.internal.detector.evaluationInputValidation>checkGroundTruthTable (line 101)
Invalid bounding box in row 1, column 1 of the training data table: Cell contents reference from a non-cell array
object.
Error in vision.internal.detector.evaluationInputValidation (line 8)
checkGroundTruthTable(groundTruth, height(detectionResults), mfilename);
Error in evaluateDetectionPrecision (line 94)
vision.internal.detector.evaluationInputValidation(detectionResults, ...
Error in RAT_DeepLearningFasterRCNNObjectDetectionExample (line 318)
[ap, recall, precision] = evaluateDetectionPrecision(results, expectedResults);
I have looked my results table and it seems to be in the correct format, with the boxes, the scores for each and the labels. What could be causing this error?
댓글 수: 0
답변 (1개)
Sanjana Ramakrishnan
2017년 5월 3일
편집: Walter Roberson
2017년 5월 3일
The second parameter of the 'evaluateDetectionPrecision' function should be in the format as specified in the documentation link below:
The most likely cause of the error message: "Cell contents reference from a non-cell array" is when it is referenced incorrectly as below:
>> d = [ 1 2 4 5];
>> d{1}
Cell contents reference from a non-cell array object.
Ensure that the second parameter is in the right format and is referenced correctly.
참고 항목
카테고리
Help Center 및 File Exchange에서 Classification Ensembles에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!