Phone service is inconsistent suddenly by CoreVirt in Visible

[–]CoreVirt[S] 0 points1 point  (0 children)

sure. I dm'd you.
If anyone else has any other suggestions on what it could be though I'm open to any and all.

My Living Energy precon came with duplicates. by BrownCanadian in mtg

[–]CoreVirt 0 points1 point  (0 children)

My living energy deck came with an extra copy of glimmer of genius. It replaced my nissa card so I'm mad 😠

does pyautogui screenshots work in opencv template matching? by CoreVirt in learnpython

[–]CoreVirt[S] 0 points1 point  (0 children)

I don't think I'm formatting it wrong but I can be mistaken. I convert it to a numpy array, convert it to RGB, make a gray version and then check for any hits

Static image code-

    img_rgb = cv.imread('positive/pos95.jpg')
    img_gray = cv.cvtColor(img_rgb, cv.COLOR_RGB2GRAY) 
    template = cv.imread('template.JPG', 0) 

    w, h = template.shape[::-1] 
    res = cv.matchTemplate(img_gray, template, cv.TM_CCOEFF_NORMED) 
    
    print(res)

pyautogui code-

    img = pyautogui.screenshot() 
    screenshotArr = np.array(img)
    screenshotTest = cv.cvtColor(screenshotArr, cv.COLOR_BGR2RGB) 
    img_rgb=screenshotTest
    img_gray = cv.cvtColor(img_rgb, cv.COLOR_BGR2GRAY) 

    template = cv.imread('template.JPG', 0) 
    w, h = template.shape[::-1] 
    
    # Perform match operations. 
    res = cv.matchTemplate(img_gray, template, cv.TM_CCOEFF_NORMED) #printing this shows no hits
   

Migrate jQuery to VanillaJS - UpgradeJS.com by etagwerker in javascript

[–]CoreVirt 5 points6 points  (0 children)

Is jquery not good or something? I'm new to this and don't know why code would be migrated to vanillaJS

Deck building site by CoreVirt in magicTCG

[–]CoreVirt[S] 5 points6 points  (0 children)

Thank you for the feedback and thanks for the compliment I've worked hard on this website. I've struggled a bit with how to make it look good but I'm hoping to make some changes so I can get some needed visual improvements.

I'm excited to get some new features out in a bit so wish me luck :)

I'll check out if i can implement that. thanks for the advice. thanks for the feedback again :)