python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Training OpenCV model on multiple pictures based on color, not on shape AKA "Banana ripeness detector"
So long story short, I'm looking for an OpenCV model that does training on multiple image sets based on color, not on shape. Like a FaceRegonition algorithm (Fisherfacerecognizer, EigenFaces, Lbphface...

TheCulprit
Votes: 0
Answers: 0
Bounding boxes returned without detected face image in dlib python
I'm trying to detect multiple faces in a picture using the deepface library with dlib as the backend detector. I'm using the DlibWrapper.py from the deeepface library and i have the following issue: I...

Sotirios
Votes: 0
Answers: 1
ValueError: Lepton not connected............................... lepton not working
from flirpy.camera.lepton import Lepton
camera = Lepton()
image = camera.grab()
camera.close()
its not working and showing error
ValueError: Lepton not connected.
gaurav najpande
Votes: 0
Answers: 1
The face recognition function
I Am Using cv2 and following is the code .
# OpenCV trains a model from the images
# NOTE FOR OpenCV2: remove '.face'
model = cv2.LBPHFaceRecognizer_create()
model.train(images, labels)
The error th...
Muqtadir
Votes: 0
Answers: 1