Ask Your Question

IanB's profile - activity

2019-01-16 08:47:32 -0600 commented answer namedwindow not defined

literally download from the link above, it has loads of sample projects, open the solution CameraOpenCV, and it just wor

2019-01-16 06:12:58 -0600 commented answer namedwindow not defined

yes I think it's that one - but the drawing commands that uses are into opencv (line, drawContours, etc) which just wor

2019-01-16 05:28:33 -0600 answered a question namedwindow not defined

I found a sample which does everything, it is very impressive, doing blur, houghlines, etc in uwp from webcam smoothly a

2019-01-16 04:45:20 -0600 marked best answer namedwindow not defined

Hi, I'm just starting, I made a UWP app with an opencv helper project according to this:

link text

I got the blur example working fine.

I thought I would try HoughCircles based on this: link text and I think it is working but I am struggling with display the results. At the end I have

namedWindow("circles", 1);
imshow("circles", img);

.. but it won't compile, namedWindow and imshow are undefined.if I type "cv::" I get code completion showing loads and loads of things but not namedWindow or imshow.

I'd appreciated some assistance with this, Thanks

2019-01-13 12:03:26 -0600 asked a question namedwindow not defined

namedwindow not defined Hi, I'm just starting, I made a UWP app with an opencv helper project according to this: link t