Hi,
I have tried capturing an image using html and passing that captured image to the frame for recognizing , I am facing the issue regarding that.
code:
if flask.request.method == "POST":
image = request.files["image"].read()
npimg = np.fromstring(image, np.uint8)
file = cv2.imdecode(npimg, cv2.IMREAD_COLOR)
frame = file
Issue: I am not able to get the frame and face id for the image captured . Whether the libfaceid is used to detect only the images captured via opencv? Please suggest me to solve
Thanks and Regards
Hi,
I have tried capturing an image using html and passing that captured image to the frame for recognizing , I am facing the issue regarding that.
code:
if flask.request.method == "POST":
image = request.files["image"].read()
npimg = np.fromstring(image, np.uint8)
file = cv2.imdecode(npimg, cv2.IMREAD_COLOR)
frame = file
Issue: I am not able to get the frame and face id for the image captured . Whether the libfaceid is used to detect only the images captured via opencv? Please suggest me to solve
Thanks and Regards