VirtualCam icon indicating copy to clipboard operation
VirtualCam copied to clipboard

Virtual camera is created only using opencv and numpy. It simulates a camera where we can control all its parameters, intrinsic and extrinsic to get a better understanding how each component in the ca...

Results 3 VirtualCam issues
Sort by recently updated
recently updated
newest added

Hello, I'm trying to use GUI.py but I'm having some troubles with distortion coefficient: I see variation in the chessboard pattern only when I put the coefficients at their max...

Hi, is there a simple way to link one point coordinate between the old img and the new ? Thanks

Thanks for this example program. For distortion input I suggest this: ```python k1 = float(cv2.getTrackbarPos("K1",WINDOW_NAME))/100000. - 0.5 k2 = float(cv2.getTrackbarPos("K2",WINDOW_NAME))/100000. - 0.5 p1 = float(cv2.getTrackbarPos("P1",WINDOW_NAME))/100000. - 0.5 p2 = float(cv2.getTrackbarPos("P2",WINDOW_NAME))/100000....