Ask Your Question

Heniek45's profile - activity

2020-12-21 07:29:11 -0600 received badge  Student (source)
2019-07-22 10:26:01 -0600 commented question Converting BGR color to HSV color gives me strange values.

Yes, thank you. I've noticed it after posting my question. More about it can be found here: https://docs.opencv.org/3.4.

2019-07-22 09:43:44 -0600 received badge  Editor (source)
2019-07-22 09:43:44 -0600 edited question Converting BGR color to HSV color gives me strange values.

Converting BGR color to HSV color gives me strange values. Hello, My atempt to convert between two color spaces of a si

2019-07-22 09:26:52 -0600 asked a question Converting BGR color to HSV color gives me strange values.

Converting BGR color to HSV color gives me strange values. Hello, My atempt to convert between two color spaces of a si

2018-11-07 02:57:22 -0600 marked best answer Loading multiple images from file to the same Mat?

Hello,

Currently if I want to load two images from two different files I have to do this:

cv::Mat image1 = cv::imread("C:\\image1.png"); 
cv::Mat image2 = cv::imread("C:\\image2.png");

Is it possible to reuse the same image1 object and load second image to it when I've finished with first? Function like this would be handy:

cv::Mat image1 = cv::imread("C:\\image1.png"); 
cv::imread(image1, "C:\\image2.png");
2018-11-07 02:57:22 -0600 received badge  Scholar (source)
2018-11-07 02:57:20 -0600 commented answer Loading multiple images from file to the same Mat?

The thing is that when I am processing images in realtime from camera 24/7 it adds up. It would be good to avoid this if

2018-11-07 02:36:19 -0600 commented answer Loading multiple images from file to the same Mat?

Thank you. I don't know opencv well, but isn't this causes a new memory allocation and release of old memory?

2018-11-07 02:13:23 -0600 asked a question Loading multiple images from file to the same Mat?

Loading multiple images from file to the same Mat? Hello, Currently if I want to load two images from two different fil

2018-06-23 07:57:38 -0600 asked a question Morphology transformation to achieve rectangular shape.

Morphology transformation to achieve rectangular shape. Hello, I wonder: is it possible to modify this input image: