I have question on object detection using dlib. I'm want to detect beard on face. so I'm labeling like below
![[image[1]](https://i.stack.imgur.com/xzTLy.jpg)
typedef scan_fhog_pyramid<pyramid_down<6> > image_scanner_type;
image_scanner_type scanner;
scanner.set_detection_window_size(80, 80);
structural_object_detection_trainer<image_scanner_type> trainer(scanner);
I have trained 400 images. but detection % is 60. It is detecting even there is no beard, I think this is because I have labeled no_beard so it is detecting (may be). It seems my labeling is wrong, I just want to detect only beard face. So in that case, do i need to label only face that have beard? or my i should label beard and no_beard? what is going wrong? for reference i'm using enter link description here