react-native-opencv icon indicating copy to clipboard operation
react-native-opencv copied to clipboard

Open CV binding for React Native

Results 3 react-native-opencv issues
Sort by recently updated
recently updated
newest added

Error while installing pod [!] Error installing OpenCV [!] /usr/bin/curl -f -L -o /var/folders/5t/z0h30hfx4qz4sz8w398dnly00000gn/T/d20200124-861-1gpln7h/file.zip https://github.com/opencv/opencv/releases/download/3.4.6/opencv-3.4.6-ios-framework.zip --create-dirs --netrc-optional --retry 2

def detectFace(image, net): image = cv2.imread(image) (h, w) = image.shape[:2] blob = cv2.dnn.blobFromImage(cv2.resize(image, (300, 300)), 1.0, (300, 300), (104.0, 177.0, 123.0)) net.setInput(blob) detections = net.forward() print(len(detections)) flag = False for...