Ask Your Question

FullMetal863's profile - activity

2017-04-21 16:00:32 -0600 asked a question How do I install opencv on python?

I am terribly sorry to bother you with this but I am at a loss. When I download the newest python 3.6.1 and opencv 3.2. When install everything I attempt to import cv2, it give me an error as if it cannot be found. I really appreciate your time.

2017-04-19 14:42:31 -0600 commented answer How to read/write video with OpenCV in Python?

Does this still stand with the newest versions of opencv and python? (python 3.6.1 64 bit and opencv 3.2)

2017-04-19 14:29:17 -0600 asked a question Can you please help me configure opencv with python 3.6.1 (64 bit)?

Good Afternoon. My name is Jordan. I sincerely hate to bother you but i am at a lost. Im attempting to do object recognition (Open Cv with Python) but i get an error  RESTART: C:\Users\Jordan\AppData\Local\Programs\Python\Python36\pythontest.py Traceback (most recent call last):   File "C:\Users\Jordan\AppData\Local\Programs\Python\Python36\pythontest.py", line 4, in <module>     face_cascade = cv2.CascadeClassifier('haarcascade_frontalface_default.xml') AttributeError: module 'opencv' has no attribute 'CascadeClassifier

Please can you help me see what I'm doing wrong.

import opencv as cv2 import numpy as np face_cascade = cv2.CascadeClassifier('haarcascade_frontalface_default.xml') eye_cascade = cv2.CascadeClassifier('haarcascade_eye.xml') cap = cv2.VideoCapture(0) while True:     ret, img = cap.read()     gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)     faces = face_cascade.detectMultiScale(gray, 1.3, 5)     for (x,y,w,h) in faces:         cv2.rectangle(img, (x,y), (x+w, y+h), (255,0,0), 2)         roi_gray = gray[y:y+h, x:x+w]         roi_color = img[y:y+h, x:x+w]         eyes = eye_cascade.detectMultiScale(roi_gray)         for (ex,ey,ew,eh) in eyes:             cv2.rectangle(roi_color, (ex, ey), (ex+ew,ey+eh), (0,255,0), 2)         cv2.imshow('img',img)         k = cv2.waitKey(30) & 0xff         if k == 27:             break         cap.release()         cv2.destroyAllWindows