OpenCV | Python
9.61K subscribers
320 photos
192 videos
25 files
271 links
Download Telegram
This media is not supported in your browser
VIEW IN TELEGRAM
#ایده_پردازی #پروژه_کاربردی_صنعتی
#کتاب #Book
🍔 بررسی کیفیت غذا و تشخیص مراحل پخت در آشپزخانه‌های صنعتی با کمک پردازش تصویر

📎 برای یادگیری کامل پایتون و پردازش تصویر، کتاب‌های من رو تهیه کن. حتما بهت کمک میکنه:
📚 https://www.ketabrah.ir/author/52174
📄 Automated image processing ensures food quality control in commercial kitchens😋
🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#سورس_کد #پروژه_کاربردی_صنعتی
🚙 تشخیص موقعیت‌های خالی در پارکینگ‌ عمومی با کمک پردازش تصویر
📎 دانلود مقاله (pdf)
💻دانلود سورس کد (Github)
🚘 Detecting vacant spaces in public parking using image processing
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#هوش_مصنوعی #FunOpenCV
ساخت کاراکترهای سه‌بعدی 😍
👨👩وارد دیزاینر مایکروسافت بشین و با پرامپت زیر کاراکترهای سه‌بعدی جالب و مناسب شبکه‌های اجتماعی طراحی کنین.
📎 لینک دیزاینر مایکروسافت
برای دوستان خود فوروارد کنین.
💎Prompt: Create a 3D illustration of a boy animated character sitting casually on top of a social media logo "Telegram". The background of the image is a social media profile page with a user name "@OpenCV_olc" and a profile picture that match.
🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#مقاله #ایده_پردازی #سورس_کد
🏀 تشخیص و ردیابی بازیکنان بسکتبال
📎دانلود سورس کد (Github)
💻دانلود مقاله (pdf)
🏀Computer vision for detecting and tracking players basketball videos
🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#سورس_کد #FunOpenCV
🎮 ساخت بازی هزارتو با پایتون
📎 دانلود سورس کد (pygame)
🕹Maze game by Python
🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#سورس_کد #ارسالی_از_کاربران
#ایده_پردازی #FunOpenCV
✏️ نقاشی مجازی با کمک پردازش تصویر
💻 دانلود سورس کد (Github)
🎨 ‌Creating virtual paintings with OpenCV and python
🙏Thanks to: Z.Jahani
🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#مقاله #سورس_کد #هوش_مصنوعی
👫 تولید کاراکترهای سه‌بعدی و ژست‌های واقع‌گرایانه از روی صوت گفتگوی دونفره
📋 دانلود مقاله (pdf)
💻دانلود سورس کد (Github)
📄 Generating photorealistic face, body and hand gestures from audio of a dynamic conversation 🗣
🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#سورس_کد #ایده_پردازی
🅿 تشخیص ظرفیت خالی در پارکینگ با کمک پردازش تصویر و رزبری‌پای
📎 دانلود سورس کد مرتبط (Github)
🚗 Smart parking system using Raspberry pi and image processing
🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#هوش_مصنوعی #مقاله #سورس_کد
🎙 کلون کردن صوت فقط با یک نمونه!
🧠 مدل OpenVoice از چندین زبان مختلف پشتیبانی میکنه و قابلیت تغییر احساسات، لحن و لهجه رو هم داره.
📋دانلود مقاله (pdf)
📎 دانلود سورس کد (Github)
🗣 OpenVoice: Versatile Instant Voice Cloning
🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#هوش_مصنوعی #ایده_پردازی
🖥 تبدیل اسکچ UI به کد HTML با کمک هوش‌مصنوعی و پردازش تصویر
🖌 This project scans your sketches in real-time and outputs a fully working digital-designed wireframe.
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#نکته #سورس_کد #پایتون
ساختن تایمر شمارش معکوس با پایتون
💻 Creating Timer by python
import time
user_t = input("Enter time (seconds):")
user_t = int(user_t)
while user_t >= 0:
  mins, secs = divmod(user_t, 60)
  timer='{:02d}:{:02d}'.format(mins,secs)
  print(timer, end='\r')
  time.sleep(1)
  user_t -= 1
print('finish')

🔻share with your friends🔻
🔹@OpenCV_olc🔹
#نکته #سورس_کد #پایتون
👨‍💻 تولید پسوورد با پایتون
📄 Password generator
import secrets
import string

pw_length=8
letters = string.ascii_letters
digits = string.digits
special_chars = string.punctuation

alphabet = letters + digits + special_chars
pwd = ''
pw_strong = False

while not pw_strong:
    pwd = ''
    for i in range(pw_length):
pwd += ''.join(secrets.choice(alphabet))
    if (any(char in special_chars for char in pwd) and sum(char in digits for char in pwd) >= 2):
       pw_strong = True

print('password = ', pwd)

🔻share with your friends🔻
🔹@OpenCV_olc🔹
#مقاله #هوش_مصنوعی
💎 ده تا از موثرترین و بهترین مقالات حوزه پردازش تصویر که دید خیلی خوبی بهتون میده.
📄The significant contributions of these ten papers have advanced image processing techniques.
1⃣ AlexNet (2012)
2⃣ VGGNet (2014)
3⃣ ResNet (2015)
4⃣ Faster R-CNN (2015)
5⃣ YOLO (2016)
6⃣ Mask R-CNN (2017)
7⃣ Densely Connected CN (2017)
8⃣ DeepLab (2017)
9⃣ Attention Is All You Need (2017)
🔟 EfficientNet (2019)
🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#ایده_پردازی #هوش_مصنوعی
🛒 تشخیص سرقت و رفتارهای مشکوک در فروشگاه‌ با پردازش تصویر و هوش مصنوعی
📄This system uses image processing and AI to detect suspicious behaviors, such as concealing items from shelves.
🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#پایتون #سورس_کد #نکته #FunOpenCV
👨‍💻 تولید دیتاهای فیک با پایتون
💎 در بعضی از پروژه‌ها نیاز داریم تا اطلاعات اولیه زیادی رو ایجاد کنیم. میتونین با ماژول faker اینکار رو راحت انجام بدین.
👨‍💻 Generate fake data like name, email, etc with random information
from faker import Faker
fake = Faker()

p = fake.profile()
print(p)  

🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#مقاله #سورس_کد #هوش_مصنوعی
🧍‍♂تشخیص موقعیت بدن به صورت سه‌بعدی
💻 BEDLAM: Bodies Exhibition Detailed Lifelike Animated Motion
💻 دانلود سورس کد (Github)
📄 دانلود مقاله (pdf)
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#پایتون #سورس_کد #FunOpenCV
🪨📄 بازی سنگ، کاغذ قیچی با پایتون
🎮 Rock, Paper, Scissors by Python
from random import randint
t = ["Rock", "Paper", "Scissors"]
computer = t[randint(0,2)]
player = False
while player == False:
    print("Rock, Paper, Scissors?")
player = input()
    if player == computer:
        print("Tie!")
    elif player == "Rock":
        if computer == "Paper":
            print("You lose!")
        else:
            print("You win!")
    elif player == "Paper":
        if computer == "Scissors":
            print("You lose!")
        else:
            print("You win!")
    elif player == "Scissors":
        if computer == "Rock":
            print("You lose...")
        else:
            print("You win!")
    else:
        print("Check your input! ")
    player = False
    computer = t[randint(0,2)]

🔻share with your friends🔻
🔹@OpenCV_olc🔹