my detector shows multiple bounding boxes .

조회 수: 1 (최근 30일)
ahmad
ahmad 2023년 9월 19일
댓글: Image Analyst 2023년 9월 20일
hi everyone,
i have problem that my trained detector show multple bounding boxes on same object as shown in attached image .Inaddition to this iit shows bounding boxes only when threshold is set to 0.1.if i set 0.2 or more it does not show anyy box or label.

답변 (1개)

Image Analyst
Image Analyst 2023년 9월 19일
I don't know what your detector does or how it operates or even what function you called. However maybe you can run through the bounding boxes and for those that have any overlapping area, take the bounding box of all the overlapped boxes.
  댓글 수: 9
ahmad
ahmad 2023년 9월 20일
I place the attackrd image name in image to detect
Image Analyst
Image Analyst 2023년 9월 20일
img = imread("C:\Users\ZBook\Desktop\New folder\new road.v2i.darknet\train\2_jpg.rf.e03c022bb9ccc6987308e66d130f4db7.jpg");
Error using imread>get_full_filename
File "C:\Users\ZBook\Desktop\New folder\new road.v2i.darknet\train\2_jpg.rf.e03c022bb9ccc6987308e66d130f4db7.jpg" does not exist.

Error in imread (line 372)
fullname = get_full_filename(filename);
[bboxes,scores,labels] = detect(detector,img,'Threshold',thrusholdvalue);
detectedImg = insertObjectAnnotation(img,"Rectangle",bboxes,labels);
imshow(detectedImg)

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Recognition, Object Detection, and Semantic Segmentation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by