Ask Your Question

programs's profile - activity

2020-07-12 10:25:14 -0600 received badge  Famous Question (source)
2020-04-14 15:49:36 -0600 received badge  Notable Question (source)
2019-01-04 13:39:52 -0600 received badge  Popular Question (source)
2017-07-21 15:57:05 -0600 commented answer Detect image on screen

You are right, you even made better question then me.

2017-07-21 04:17:16 -0600 commented answer Detect image on screen

I need need OpenCV to search entire screen, there is some static portion in running application who will not change.

  img_rgb = cv2.imread('mario.png')
    template = cv2.imread('mario_coin.png',0)

This just compared 2 pictures. And what I should put inside imread() method or maybe use diffrend method?

2017-07-20 18:02:43 -0600 asked a question Detect image on screen

I have found that OpenCV can detect image from images: http://docs.opencv.org/2.4/doc/tutori...

But can it find a picture from my screen i currectly running ( browser, game, watching video ... ) I meant detect image not by file, but real time?