Ask Your Question

AbhiTronix's profile - activity

2020-09-13 11:14:00 -0600 received badge  Necromancer (source)
2020-09-13 09:50:07 -0600 edited answer how to stream preprocessed video over network

Hey, if you're dealing with python, then you can use my powerful vidgear library that supports FFmpeg backend with its W

2020-09-13 09:48:45 -0600 answered a question how to stream preprocessed video over network

Hey, if you're dealing with python, then you can use my powerful vidgear library that supports FFmpeg backend with its W

2020-09-12 09:57:59 -0600 edited answer RTSP Streaming, Gstreamer or FFmpeg ?

If you are looking solution in python, for RTSP Streaming with Gstreamer and FFmpeg, then you can use my powerful vidge

2020-09-12 09:56:24 -0600 answered a question RTSP Streaming, Gstreamer or FFmpeg ?

If you are looking solution in python, for RTSP Streaming with Gstreamer and FFmpeg, then you can use my powerful vidge

2020-04-17 05:45:36 -0600 received badge  Notable Question (source)
2019-09-17 20:31:37 -0600 received badge  Popular Question (source)
2019-07-26 21:59:37 -0600 received badge  Necromancer (source)
2019-07-26 04:27:28 -0600 received badge  Necromancer (source)
2019-07-25 10:25:14 -0600 answered a question [Python] Real time image stabilization with Optical Flow

I'm the author of powerful & threaded VidGear Video Processing python library that now provides real-time Video Stab

2019-07-25 10:22:44 -0600 answered a question realtime video stabilization

I'm kind of late but I've created powerful & threaded VidGear Video Processing python library that now provides real

2019-05-01 09:09:29 -0600 answered a question How to send opencv video's to ffmpeg

@jxb If you're planning to use Python, Then you can use powerful VidGear Python Library that automates the process of p

2018-12-01 21:25:52 -0600 commented answer estimateAffinePartial2D and estimateAffine2D

@Tetragramm Solved it ;)

2018-11-19 01:31:58 -0600 commented answer estimateAffinePartial2D and estimateAffine2D

@Tetragramm, Can you please provide any sample/test/example code to properly run estimateAffinePartial2d in python, Plea

2018-11-19 01:28:25 -0600 commented answer Is estimateRigidTransform removed from Latest OpenCV?

Maybe I'll try to figure it out myself. Thanks a lot anyway @berak

2018-11-19 01:18:37 -0600 marked best answer Is estimateRigidTransform removed from Latest OpenCV?

Is estimateRigidTransform removed from Latest OpenCV or moved to somewhere else? Here's my output:

Python 3.6.6 (default, Sep 12 2018, 18:26:19) 
[GCC 8.0.1 20180414 (experimental) [trunk revision 259383]] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import cv2
>>> cv2.estimateRigidTransform()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: module 'cv2' has no attribute 'estimateRigidTransform'
>>> cv2.__version__
'4.0.0-pre'
>>>
2018-11-19 01:18:37 -0600 received badge  Scholar (source)
2018-11-19 01:13:39 -0600 commented answer Is estimateRigidTransform removed from Latest OpenCV?

@berak https://github.com/opencv/opencv/commit/49283ec0350fd0725ae78a78e234e47ce5c8ce8f#diff-fd4eb49caefd8e9973a3d6450e

2018-11-19 01:11:59 -0600 commented answer Is estimateRigidTransform removed from Latest OpenCV?

https://github.com/opencv/opencv/commit/49283ec0350fd0725ae78a78e234e47ce5c8ce8f#diff-fd4eb49caefd8e9973a3d6450e5e06ec y

2018-11-18 23:42:32 -0600 commented question Is estimateRigidTransform removed from Latest OpenCV?

https://github.com/opencv/opencv/pull/11594 I think it is replaced by estimateAffinePartial2D? @berak Please confirm?

2018-11-18 23:40:30 -0600 commented question Is estimateRigidTransform removed from Latest OpenCV?

https://github.com/opencv/opencv/pull/11594 I think it is replaced by estimateAffinePartial2D? Please confirm?

2018-11-18 22:26:37 -0600 received badge  Organizer (source)
2018-11-18 22:22:05 -0600 asked a question Is estimateRigidTransform removed from Latest OpenCV?

Is estimateRigidTransform removed from Latest OpenCV? Is estimateRigidTransform removed from Latest OpenCV or moved to s

2018-10-30 07:05:33 -0600 received badge  Teacher (source)
2018-10-28 04:28:36 -0600 received badge  Self-Learner (source)
2018-10-28 04:28:32 -0600 marked best answer Find Centroid Coordinate of whole frame in OpenCV

Hello everyone, I'm searching on the internet for an optimum code to find the Centroid's XY-Coordinates of OpenCV Frame, but failed to do so.

I know how to find the centroid/center of a contour, as below(in python):

image = cv2.imread("test.png"])
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)

blurred = cv2.GaussianBlur(gray, (5, 5), 0)
thresh = cv2.threshold(blurred, 60, 255, cv2.THRESH_BINARY)[1]


# find contours in the thresholded image
cnts = cv2.findContours(thresh.copy(), cv2.RETR_EXTERNAL,
    cv2.CHAIN_APPROX_SIMPLE)
cnts = cnts[0] 
#print cnts

# loop over the contours
for c in cnts:
    # compute the center of the contour
    M = cv2.moments(c)
    cX = int(M["m10"] / M["m00"])
    cY = int(M["m01"] / M["m00"])

Where CX, CY is the required XY-coordinates but how to find that for whole video-frame/image in OpenCV, Please anyone can help me for the same?

2018-10-28 04:22:27 -0600 commented question Find Centroid Coordinate of whole frame in OpenCV

@berak Thanks for helping, I cannot post the answer here due to low karma points. Here is the straightforward yet simpl

2018-10-28 03:34:53 -0600 asked a question Find Centroid Coordinate of whole frame in OpenCV

Find Centroid Coordinate of whole frame in OpenCV Hello everyone, I'm searching on the internet for an optimum code to f

2018-08-01 02:25:45 -0600 received badge  Enthusiast
2018-07-11 23:11:16 -0600 commented answer OpenCV cv2.dnn.readNetFromCaffe : get output from specific layer only ?

Yeah that seems to work. Don't know if it is giving out true values or not. Cannot cross-check it with real values as i

2018-07-11 10:24:23 -0600 received badge  Editor (source)
2018-07-11 10:24:23 -0600 edited question OpenCV cv2.dnn.readNetFromCaffe : get output from specific layer only ?

OpenCV cv2.dnn.readNetFromCaffe : get output from specific layer only ? Hi, If I want to get the output of specific lay

2018-07-11 10:21:33 -0600 asked a question OpenCV cv2.dnn.readNetFromCaffe : get output from specific layer only ?

OpenCV cv2.dnn.readNetFromCaffe : get output from specific layer only ? Hi, If I want to get the output of specific lay