Learning OpenCV 👀

I’m currently diving into OpenCV while being at an intermediate level in Python. 🐍

Exploring image processing, computer vision, edge detection, and how Python can interact with the real world through a camera.

Still learning, still experimenting, and definitely breaking things along the way 😂

Any OpenCV project ideas for an intermediate Python developer?

reddit.com
u/Smartyboyz — 18 hours ago

🚀 Looking for Python Project Ideas to Improve My Database Skills

I’m currently working on improving my Python backend skills, especially when it comes to database design and relationships.

I’m looking for some practical project ideas that would help me get better at:

🔹 Working with databases through Python/ORMs

I’d prefer projects that are more challenging.

If you have any interesting Python + Database project ideas, I’d really appreciate your suggestions! 🙌

#Python #BackendDevelopment #Databases #SQL #Programming #SoftwareDevelopment #LearningInPublic

reddit.com
u/Smartyboyz — 4 days ago

Have a library(python) question?

An idea came in my mind about making a chess game more interesting with AI integration. I want to make a program which helps me as a instructor while playing chess online with someone else. Help me out by telling me libraries which I can use in detecting the positions of chess pieces and then suggest for next move. Also tell the possibility of making this in python language.

reddit.com
u/Smartyboyz — 6 days ago
▲ 4 r/LeetcodeChallenge+1 crossposts

#76 Leetcode question (Optimisation help!)

class Solution:
    def minWindow(self, s: str, t: str) -> str:
        if len(t) > len(s):
            return ""
        elif len(t) == len(s):
            if t == s:
                return s
        win = len(t)
        ans = ""
        l = list(t)
        while win <= len(s):
            for i in range(0,len(s)):
                win_s = s[i:i+win]
                win_l = list(win_s)
                ans = ""
                for x in t:
                    if x in win_l:
                        win_l[win_l.index(x)] = ""
                        ans += x
                    else:
                        ans = ""
                if ans == t:
                    return win_s
            win += 1
        return ""

I need help in optimising my code because its working properly but having a runtime error for a long input like 200 letters input. So plz help me out in optimisation in this code.

reddit.com
u/Smartyboyz — 6 days ago

Flask vs Django

I am a 17 year old intermediate python programmer and I used to make python projects with Flask. Now I want to know which is better from flask and Django.

reddit.com
u/Smartyboyz — 6 days ago