Ask Your Question

crackwitz's profile - activity

2020-12-21 18:33:15 -0600 received badge  Nice Answer (source)
2020-12-10 13:16:05 -0600 edited answer Lot of Delay with my RTSP cam with OpenCV on Python

the camera will produce frames at its own constant rate. if you don't consume them promptly, they queue up. that is the

2020-12-10 13:14:55 -0600 answered a question Lot of Delay with my RTSP cam with OpenCV on Python

the camera will produce frames at its own constant rate. if you don't consume them promptly, they queue up. that is the

2020-12-10 13:12:17 -0600 commented question tvec and coordinate systems q

tvec is precisely that vector in the camera frame that points to the plane frame's origin

2020-12-09 14:58:46 -0600 commented question tvec and coordinate systems q

what ray are you talking about? I don't follow.

2020-12-09 11:15:18 -0600 answered a question How to avoid potential noise after Canny?

simple average isn't good enough. you need to be sensitive to a pixel changing at all (within some tolerance) over a cer

2020-12-08 15:52:25 -0600 commented question tvec and coordinate systems q

when I said "frame", I mean an abstract thing: a coordinate frame, coordinate axis, frame of reference, a "basis" to use

2020-12-08 15:51:15 -0600 commented question tvec and coordinate systems q

when I said "frame", I mean an abstract thing: a coordinate frame, coordinate axis, frame of reference, a "basis" to use

2020-12-07 17:15:08 -0600 commented question tvec and coordinate systems q

AIUI, when you transform from frame A to frame B, the tvec represents the "position" of A in B's frame. conceptually, co

2020-12-07 17:14:02 -0600 commented question tvec and coordinate systems q

AIUI, when you transform from frame A to frame B, the tvec represents the "position" of A in B's frame. conceptually, co

2020-12-07 12:59:15 -0600 answered a question Optimizations on opencv hog implementation(interp_weight, gaussian)

I would suggest that you find the original scientific paper that describes the Histogram of Oriented Gradients the wiki

2020-12-07 12:55:14 -0600 commented question How can I track the disappearance of a TV logo in a certain area in a frame (ROI)?

okay so what's the question? you stated that you "want to check using matchTemplate"

2020-12-05 13:25:52 -0600 answered a question Reading and Writing Videos: Python on GPU with CUDA - VideoCapture and VideoWriter

there is the "cudacodec" module. that ought to support decoding and encoding videos using the GPU's hardware codec. I d

2020-12-05 13:24:28 -0600 commented question Reading and Writing Videos: Python on GPU with CUDA - VideoCapture and VideoWriter

please reformat. block code is indented with four spaces, and no backticks

2020-12-05 13:24:00 -0600 commented question Error building opencv with extra modules in Visual Studio 2013

you have errors relating to OpenCL and errors relating to "quirc". are those all, or are there more errors? run cmake-gu

2020-12-05 13:21:11 -0600 commented question i am creating a dataset for real time face recognition using python. i want it should intimate if the image already available in dataset. how to implement in opencv?

look at facenet or other face recognition methods (eigenfaces, fisher faces). you need to formulate a similarity/distanc

2020-12-04 16:41:11 -0600 commented question Triangulation with Ground Plane as Origin

please post both board-to-camera matrices and the c2-to-c1 matrix you get from the calibration. I'd like to stare at the

2020-12-04 16:39:52 -0600 commented question Triangulation with Ground Plane as Origin

I've stared at what's there some more. what's your input to stereoCalibrate? are you sure your objectPoints coordinates

2020-12-04 16:37:04 -0600 commented question Triangulation with Ground Plane as Origin

please post both board-to-camera matrices and the c2-to-c1 matrix you get from the calibration. I'd like to stare at the

2020-12-04 16:29:12 -0600 commented question Triangulation with Ground Plane as Origin

I'd like clarification: how do you use projectPoints to get a transformation from board to camera frame? I believe that

2020-12-04 09:22:15 -0600 commented question historical performance test cast data in build pipeline?

ah, then I misunderstood. it sounded to me as if there was performance testing in place but without expected performance

2020-12-04 07:41:12 -0600 commented question i am creating a dataset for real time face recognition using python. i want it should intimate if the image already available in dataset. how to implement in opencv?

as for the subject: you would have to recognize subjects. you can do that by teaching the system a subject from sample f

2020-12-04 07:39:28 -0600 commented question i am creating a dataset for real time face recognition using python. i want it should intimate if the image already available in dataset. how to implement in opencv?

read "to intimate" as "to reveal/indicate".

2020-12-03 16:31:28 -0600 answered a question How to discover the input and output format of a cv::dnn::Net?

the network's description can tell you the dimensions of every layer, particularly first and last layers. it can't tell

2020-12-03 16:27:21 -0600 commented answer Training for roof tile detection

those response peaks are the result of matchTemplate or other correlation methods. they indicate the strength of the cor

2020-12-03 16:26:11 -0600 commented answer Training for roof tile detection

those are the result of matchTemplate or other correlation methods. they indicate the strength of the correlation for th

2020-12-03 11:44:56 -0600 commented question Why is the processImage delegate not getting called automatically?

the documentation for the Objective C bindings are very bare. unfortunately you are in uncharted territory. maybe this t

2020-12-03 11:44:37 -0600 commented question Why is the processImage delegate not getting called automatically?

the documentation for the Objective C bindings are very bare. unfortunately you are in uncharted territory. maybe this t

2020-12-03 11:44:09 -0600 commented question Why is the processImage delegate not getting called automatically?

the documentation for the Objective C bindings are very bare. unfortunately you are in uncharted territory. maybe this t

2020-12-03 11:42:24 -0600 commented question Why is the processImage delegate not getting called automatically?

the documentation for the Objective C bindings are very bare. unfortunately you are in uncharted territory. https://docs

2020-12-03 11:36:09 -0600 answered a question Training for roof tile detection

here's how I would solve it: ask the user to click on the corners of a rectangle on the roof warp the picture so

2020-12-03 11:13:40 -0600 commented question historical performance test cast data in build pipeline?

I doubt it. performance depends on the machine the test is run on. you'd need a reference machine to make values compara

2020-12-03 11:11:26 -0600 answered a question Convert a Video.mp4 in a 2D Matrix where each row represents a frame

numpy stacking creates a copy because it's impossible to enlarge arrays in-place. thus, you are copying the whole array

2020-12-02 14:26:15 -0600 commented question How can I track the disappearance of a TV logo in a certain area in a frame (ROI)?

what approaches have you tried so far?

2020-12-02 14:25:34 -0600 commented question How can I track the disappearance of a TV logo in a certain area in a frame (ROI)?

please provide some pictures

2020-12-02 14:24:31 -0600 commented question imshow no window on Mac Big Sur with Python

you are going to need to contact the maintainer of that python package, skvarg. he will need to figure out what's going

2020-12-02 14:19:28 -0600 commented answer Finding center of contour in a game

here are some keywords: cv::inRange, morphological operations (closing in particular), cv::findContours, connected compo

2020-12-02 14:18:52 -0600 commented answer Finding center of contour in a game

here are some keywords: cv::inRange, morphological operations (closing in particular), cv::findContours, connected compo

2020-12-02 14:16:24 -0600 commented question Duplicate frames in saved file from cv2.VideoWriter

post your code, or the pieces that could be relevant. the VideoWriter is likely not at fault, but something else is goin

2020-12-02 14:15:53 -0600 commented question Duplicate frames in saved file from cv2.VideoWriter

setting CAP_PROP_FPS on a VideoWriter object is purely metadata. the VideoWriter always writes as fast as possible, whic

2020-12-02 14:14:48 -0600 commented question Duplicate frames in saved file from cv2.VideoWriter

post your code, or the pieces that could be relevant. the VideoWriter is likely not at fault, but something else is goin

2020-12-02 14:12:33 -0600 commented question stitch transform reuse

precisely, the link doesn't apply to the situation

2020-12-02 01:25:04 -0600 commented question Converting image to grayscale

post all relevant code. speculate on what the error message could mean (read it).

2020-12-01 21:10:16 -0600 commented question stitch transform reuse

that's for 5 images/videos, not 5-channel data

2020-12-01 21:09:03 -0600 commented answer stitch transform reuse

OpenCV comes with simple and detailed stitching sample source and accompanying, very brief, "tutorial" article https://d

2020-12-01 11:25:19 -0600 edited answer stitch transform reuse

I took a quick peek at the stitcher API it recommends that you familiarize yourself with its pipeline it appears that

2020-12-01 11:25:07 -0600 edited answer stitch transform reuse

I took a quick peek at the stitcher API it recommends that you familiarize yourself with its pipeline it appears that

2020-12-01 11:23:37 -0600 edited answer stitch transform reuse

I took a quick peek at the stitcher API it recommends that you familiarize yourself with its pipeline it appears that

2020-12-01 11:22:07 -0600 answered a question stitch transform reuse

I took a quick peek at the stitcher API it appears that you can run estimateTransform() separately from composePanorama

2020-12-01 11:06:35 -0600 answered a question Birdseye transform with getPerspectiveTransform

your code doesn't contain getPerspectiveTransform. do you have the homography matrix returned by that call? the homogra