| |
Methods defined here:
- __init__(self, frame, framerate)
- Summary or Description of the Function
:param frame(m*n array): frame from video/camera for calculatint height, width, number of channels in image
:param framerate(int): framerate of video/camera
- animal(self, bbox, image)
- Summary or Description of the Function
:param bbox: (x,y,w,h) of detected subject
:param image(m*n array): frame from video/camera
(1)crop and show ROI
x = int(x+(x+w/3)) y = int(y+h/3) w= 90 h =90
crop_img = image[y:y+h,x:x+w]
cv2.imshow("animal",crop_img)
(2)convert BGR TO YCBCR
im_rgb = cv2.cvtColor(crop_img, cv2.COLOR_BGR2RGB)
im_ycbcr = cv2.cvtColor(im_rgb, cv2.COLOR_RGB2YCR_CB)
(3)average Y channel for raw cardiac signal and send raw signal to real display signal panel
luma,cb,cr = cv2.split(im_ycbcr)
signal = cv2.mean(luma)[0]
signal_animal = np.append(signal_animal,signal)
import UDP_server as udp
udp.send_signal_luma(signal_animal,"luma-raw")
(4)bandpass filter and find send signal to heartrate function
BPsignal = HR.bandpass(signal_animal,1.5,4.2,self.framerate,3)##90bpm to 250bpm
HR.findHeartrate(BPsignal,self.framerate)
:return: (x,y,w,h) of crop_img
Data descriptors defined here:
- __dict__
- dictionary for instance variables (if defined)
- __weakref__
- list of weak references to the object (if defined)
|