Ask Your Question

Andriezel's profile - activity

2019-08-01 04:05:22 -0600 received badge  Famous Question (source)
2018-08-03 04:48:05 -0600 received badge  Notable Question (source)
2018-04-24 14:40:18 -0600 received badge  Popular Question (source)
2017-12-15 04:32:10 -0600 asked a question Dynamic Thresholding

Dynamic Thresholding Hi, I have a question about Dynamic Thresholding. I know that Halcon software uses dynamic thresho

2017-11-10 07:11:15 -0600 commented question How to calculate standard deviation on image with transparency

Yes, I was thinking the same thing. Maybe, because I can find the contour of the star and find the center of that contou

2017-11-10 06:26:33 -0600 commented question How to calculate standard deviation on image with transparency

well, i want to know the mean color of the object. This is just 1 color, but I have other images which have a lot of dif

2017-11-10 04:56:12 -0600 commented question How to calculate standard deviation on image with transparency

Thanks Berak! I will try to find another way then.

2017-11-10 04:12:21 -0600 asked a question How to calculate standard deviation on image with transparency

How to calculate standard deviation on image with transparency Hello everyone. How do I calculate the standard deviatio

2017-11-09 06:08:10 -0600 commented question How to calculate StdDev for RGB image?

I think you misunderstood my question. I already found the answer so I close this one.

2017-11-09 03:37:17 -0600 commented question How to calculate StdDev for RGB image?

@Lberger That's the whole thing. I want to get the same results in my OpenCV program..

2017-11-09 03:36:53 -0600 commented question How to calculate StdDev for RGB image?

@Lberger That's the whole thing. I want to the same results in my OpenCV program..

2017-11-09 03:35:23 -0600 received badge  Editor (source)
2017-11-09 03:35:23 -0600 edited question How to calculate StdDev for RGB image?

How to calculate StdDev for RGB image? Hello, I'm trying to get the mean and standard deviation on a RGB image. I have

2017-11-09 02:32:55 -0600 asked a question How to calculate StdDev for RGB image?

How to calculate StdDev for RGB image? Hello, I'm trying to get the mean and standard deviation on a RGB image. I have

2017-11-08 12:54:52 -0600 received badge  Self-Learner (source)
2017-11-08 01:40:15 -0600 answered a question copyTo() works only the first time

I already figured it out. What I did was delete the if else part and put this code in the ToggleEraser() function: [...

2017-11-06 01:34:15 -0600 commented question copyTo() works only the first time

Hi, thanks for the comment. I have INIT_WITH_RECT because I'm using the grabcut function only once. After that it sets m

2017-11-03 10:05:47 -0600 asked a question copyTo() works only the first time

copyTo() works only the first time Hello. I have a problem with my copyTo() function. I have a mask and I'm editing tha

2017-11-01 03:59:46 -0600 asked a question SEHException when using GrabCut INIT_WITH_MASK

SEHException when using GrabCut INIT_WITH_MASK Hi everyone! So I am working on a project where I want to use GrabCut an

2017-10-31 02:41:19 -0600 marked best answer Perform functions on a ROI

Hi everyone!

I'm working on a project and I want to select a ROI with my mouse.

Then I want to do the following things:

  • Make everything on the outside of the rectangle zero/black.
  • Perform some thresholding functions in the ROI.
  • Put it back in to the original image.

I don't know how to achieve this. Here's some pseudo code:

for loop to iterate through image{
{
     if(point x and y are not the same as the roi x and y ){
          make the pixel black
      }
 }

..perform some thresholding on ROI..

//copy roi back to image
image.copyTo(result, roi);

Can someone help me out here?

Thanks.

2017-10-31 02:41:19 -0600 received badge  Scholar (source)
2017-10-27 04:57:44 -0600 asked a question Perform functions on a ROI

Perform functions on a ROI Hi everyone! I'm working on a project and I want to select a ROI with my mouse. Then I want

2017-10-18 13:05:46 -0600 received badge  Teacher (source)
2017-10-18 10:06:48 -0600 received badge  Student (source)
2017-10-18 10:06:44 -0600 received badge  Self-Learner (source)
2017-10-18 09:23:26 -0600 answered a question How to properly convert Mat to Bitmap C++

Okay so after a while I managed to get it working. What I did was the following: I made cv::Mat image; as global varia

2017-10-11 01:09:01 -0600 received badge  Enthusiast
2017-10-09 02:13:43 -0600 asked a question Best way to convert Mat to an Image from C++ to C#

Best way to convert Mat to an Image from C++ to C# I want to know the best way to convert an OpenCV Mat to an Image from

2017-10-04 05:20:21 -0600 commented question How to properly convert Mat to Bitmap C++

@kbarni I don't get that actually. I checked the Stride in the C++ converted Bitmap object in the C# code and it says: 1

2017-10-03 07:48:25 -0600 commented question How to properly convert Mat to Bitmap C++

I already have my PixelFormat to 24 bit. I tried 3 * img.cols but that doesnt work. Now I tried saving my Bitmap right a

2017-10-03 06:38:23 -0600 commented question How to properly convert Mat to Bitmap C++

Hi berak, thanks for the comment. So if my stride is broken; how can I fix that? I thought 4 * image.rows is enough. I a

2017-10-02 08:16:14 -0600 commented question How to properly convert Mat to Bitmap C++

Hi, thanks for replying but I'm not using any of these openCV wrappers. I'm just using C# as a GUI. Also, I don't use an

2017-10-02 07:03:09 -0600 asked a question How to properly convert Mat to Bitmap C++

How to properly convert Mat to Bitmap C++ Hello, I'm a student and I'm learning OpenCV (C++) and I'm having a weird que