Ask Your Question

Filippo9669's profile - activity

2020-10-20 09:20:26 -0600 received badge  Student (source)
2020-07-07 21:28:05 -0600 received badge  Self-Learner (source)
2019-05-02 16:43:21 -0600 commented question Rho and Theta resolution in Hough Transform

anyone who could help?

2019-05-01 18:19:36 -0600 edited question Rho and Theta resolution in Hough Transform

Rho and Theta resolution in Hough Transform Hello, One of the parameters in Hough Transform is the distance (rho) resol

2019-05-01 18:18:27 -0600 edited question Rho and Theta resolution in Hough Transform

Rho and Theta resolution in Hough Transform Hello, One of the parameters in Hough Transform is the distance (rho) resol

2019-05-01 18:06:44 -0600 asked a question Rho and Theta resolution in Hough Transform

Rho and Theta resolution in Hough Transform Hello, One of the parameters in Hough Transform is the distance (rho) resol

2019-05-01 18:06:33 -0600 asked a question Rho and Theta resolution in Hough Transform

Rho and Theta resolution in Hough Transform Hello, One of the parameters in Hough Transform is the distance (rho) resol

2019-05-01 18:06:33 -0600 asked a question Rho and Theta resolution in Hough Transform

Rho and Theta resolution in Hough Transform Hello, One of the parameters in Hough Transform is the distance (rho) resol

2019-04-22 10:33:51 -0600 edited question Canny thresholding issues

Canny thresholding issues Hi, I have some unclarities about thresholding in Canny's algorithm. Let's take this: This

2019-04-22 10:32:10 -0600 edited question Canny thresholding issues

Canny thresholding issues Hi, I have some unclarities about thresholding in Canny's algorithm. Let's take this: This

2019-04-22 10:31:39 -0600 asked a question Canny thresholding issues

Canny thresholding issues Hi, I have some unclarities about thresholding in Canny's algorithm. Let's take this: This i

2019-04-17 04:45:53 -0600 commented answer Calculating a magnitude

Based on luminosity, these are extreme differences between adjacent pixels

2019-04-17 04:37:54 -0600 commented answer Calculating a magnitude

Thanks. Nevertheless, I have spotted some kind of inaccuracy in computing the gradient via Sobel. In my case, min and ma

2019-04-17 04:31:38 -0600 commented answer Calculating a magnitude

Thanks. Nevertheless, I have spotted some kind of inaccuracy in computing the gradient via Sobel. In my case, min and ma

2019-04-16 05:49:15 -0600 commented answer Calculating a magnitude

Thanks a lot! I would like to ask you about one more thing - is the gradient magnitude calculated in a way that the high

2019-04-16 05:28:15 -0600 marked best answer Calculating a magnitude

Hi there, I have a hard time compiling this piece of code:

UMat dx, dy;
Sobel(GREY_IMAGE, dx, GREY_IMAGE.depth(), 1, 0, 3);
Sobel(GREY_IMAGE, dy, GREY_IMAGE.depth(), 0, 1, 3);
resize(dx, dx, Size(dx.rows, dx.rows), 0, 0, CV_INTER_AREA);
resize(dy, dy, Size(dx.rows, dx.rows), 0, 0, CV_INTER_AREA);
UMat mag(dx.size(), dx.type());
magnitude(dx, dy, mag);

Whenever I try it a get a response:

{msg="OpenCV(4.0.0-dev) E:\opencv-master\modules\core\src\mathfuncs.cpp:151: error: (-215:Assertion failed) src1.size() == src2.size() && type == src2.type() && (depth == CV_32F || depth == CV_64F) in funct... ...}

I have no idea what's wrong with the code above. Dimensions are ok, all three matrixes are quadratic. What shall I do?

2019-04-16 04:40:19 -0600 asked a question Calculating a magnitude

Calculating a magnitude Hi there, I have a hard time compiling this piece of code: UMat dx, dy; Sobel(GREY_IMAGE, dx,

2019-01-22 10:53:31 -0600 commented question Capturing a frame in a double while loop

@supra56 how exactly shall I apply it?

2019-01-22 10:51:19 -0600 commented question Capturing a frame in a double while loop

Because loops are far more complicated and it is not really helpful to show what's inside of them.

2019-01-22 06:47:29 -0600 asked a question Capturing a frame in a double while loop

Capturing a frame in a double while loop Hi! I have a problem with something like this. The case is that if i > a &am

2018-12-27 15:32:47 -0600 asked a question Hough algorithm - thinning lines out

Hough algorithm - thinning lines out Hello. FunctionHoughLines()returns a vector filled with these of lines which get en

2018-12-17 05:03:45 -0600 commented question Injective function of RGB

f(R,G,B): [R, G, B ] = [(0-255), (0-255), (0-255)] -> [(a,b)] where, for instance f([1, 2, 2]) != f([2, 1, 1]) and s

2018-12-17 04:32:30 -0600 asked a question Injective function of RGB

Injective function of RGB Is it possible to find a function that transforms a three-dimensional vector of values (each f

2018-12-11 13:16:27 -0600 edited question Changing a histogram (creating a hole)

Changing a histogram (creating a hole) Hi there. This is a histogram of a grayscaled image I have: I need it to be mo

2018-12-11 13:15:37 -0600 asked a question Changing a histogram (creating a hole)

Changing a histogram (creating a hole) Hi there. This is a histogram of a grayscaled image I have: I need it to be mo

2018-12-07 04:59:55 -0600 asked a question LNK2019 cuda::cvtColor and cuda::equalizeHist

LNK2019 cuda::cvtColor and cuda::equalizeHist Hello! I'm trying to use cuda::cvtColor and cuda::equalizeHist but I get e

2018-12-07 04:59:50 -0600 asked a question LNK2019 cuda::cvtColor and cuda::equalizeHist

LNK2019 cuda::cvtColor and cuda::equalizeHist Hello! I'm trying to use cuda::cvtColor and cuda::equalizeHist but I get e

2018-12-06 07:44:38 -0600 edited question OpenCV with CUDA

OpenCV with CUDA Hi there. I'm trying to run CUDA libraries with my OpenCV project (need for GpuMat). I've generated a s

2018-12-06 07:43:59 -0600 commented question OpenCV with CUDA

I've added all required data.

2018-12-06 07:43:00 -0600 edited question OpenCV with CUDA

OpenCV with CUDA Hi there. I'm trying to run CUDA libraries with my OpenCV project (need for GpuMat). I've generated a s

2018-12-06 04:07:10 -0600 asked a question OpenCV with CUDA

OpenCV with CUDA Hi there. I'm trying to run CUDA libraries with my OpenCV project (need for GpuMat). I've generated a s

2018-12-03 07:44:32 -0600 edited question Max gradient magnitude in Canny's algorithm

Max gradient magnitude in Canny's algorithm Hi there! I'm working on a way to adjust threshold levels in Canny's algorit

2018-12-03 07:41:58 -0600 edited question Max gradient magnitude in Canny's algorithm

Max gradient magnitude in Canny's algorithm Hi there! I'm working on a way to adjust threshold levels in Canny's algorit

2018-12-03 06:38:38 -0600 asked a question Max gradient magnitude in Canny's algorithm

Max gradient magnitude in Canny's algorithm Hi there! I'm working on a way to adjust threshold levels in Canny's algorit

2018-11-30 03:37:43 -0600 edited question Changing threshold in a loop

Changing threshold in a loop Hello! I've already added two trackbars responsible for changing the lowest and highest pos

2018-11-30 01:53:37 -0600 edited question Changing threshold in a loop

Changing threshold in a loop Hello! I've already added two trackbars which are responsible for changing the lowest and h

2018-11-30 01:52:26 -0600 edited question Changing threshold in a loop

Changing threshold in a loop Hello! I've already added two trackbars which are responsible for changing the lowest and h

2018-11-30 01:48:52 -0600 edited question Changing threshold in a loop

Changing threshold in a loop Hello! I've already added two trackbars which are responsible for changing the lowest and h

2018-11-29 16:39:11 -0600 edited question Changing threshold in a loop

Changing threshold in a loop Hello! I've already added two trackbars which are responsible for changing the lowest and h

2018-11-29 16:39:00 -0600 received badge  Editor (source)
2018-11-29 16:39:00 -0600 edited question Changing threshold in a loop

Changing threshold in a loop Hello! I've already added two trackbars which are responsible for changing the lowest and h

2018-11-29 16:38:10 -0600 asked a question Changing threshold in a loop

Changing threshold in a loop Hello! I've already added two trackbars which are responsible for changing the lowest and h

2018-11-27 13:07:57 -0600 received badge  Enthusiast
2018-11-14 13:54:10 -0600 commented answer How to detect the "external" pixels in an edge?

Well, I think I've almost helped myself - bluring a canny image seems to be quite a good way of improving the accuracy.

2018-11-14 13:45:21 -0600 answered a question How to detect the "external" pixels in an edge?

Another issue that has appeared - what if contour is not closed? The function findContours(CANNY_IMAGE, contours, RETR