Ask Your Question

Digbijay2's profile - activity

2018-11-13 12:54:16 -0600 commented question How to increase openpose fps with webcam

berak no change there, i looked both the repo but won't get any solution. the frame detected and processes very slow whe

2018-11-08 03:56:40 -0600 commented question How to increase openpose fps with webcam

Please check the repo :)

2018-11-08 03:55:21 -0600 commented question How to increase openpose fps with webcam

When i run it with an input video... again the the frame rate is slow. Is it due to hardware?? If not please help me to

2018-11-08 03:44:33 -0600 commented question How to increase openpose fps with webcam

berak pls look at this repo: https://github.com/spmallick/learnopencv/blob/master/OpenPose/OpenPoseVideo.py Here I just

2018-11-07 12:13:22 -0600 asked a question How to increase openpose fps with webcam

How to increase the frame rate at realtime webcam I am doing a program for Realtime human pose estimation and for detect

2018-11-05 03:40:11 -0600 marked best answer Can anyone know the code of python to put two frames in a single window output specifically to use it in opencv

input_source = "sample.mp4" cap = cv2.VideoCapture(input_source) hasFrame, frame = cap.read()

vid_writer = cv2.VideoWriter('output.avi',cv2.VideoWriter_fourcc('M','J','P','G'), 10, (frame.shape[1],frame.shape[0]))
vid_writer.write(frame)

Above is short code snippets to put one frame. Please tell me how to make it for 2 frames in a single window output.

2018-11-05 03:40:11 -0600 received badge  Scholar (source)
2018-11-03 09:31:38 -0600 edited question Can anyone know the code of python to put two frames in a single window output specifically to use it in opencv

Can anyone know the code of python to put two frames in a single window output specifically to use it in opencv input_so

2018-11-03 09:31:34 -0600 received badge  Editor (source)
2018-11-03 09:31:34 -0600 edited question Can anyone know the code of python to put two frames in a single window output specifically to use it in opencv

Can anypne know the code of python to put two frames in a single window output specifically to use it in opencv input_so

2018-11-03 09:22:01 -0600 asked a question Can anyone know the code of python to put two frames in a single window output specifically to use it in opencv

Can anypne know the code of python to put two frames in a single window output specifically to use it in opencv input_so

2018-11-03 09:17:17 -0600 answered a question Put two or more frames in one output window

Can anyone please give me the same code in python to put 2 frames or 4 frames in a single window output??