Telegram Web Link
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🔹
👍10🔥2💯1
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🔹
🔥4👍2🆒1
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🔹
👍9😍5🔥21
#نکته #سورس_کد #پایتون
ساختن تایمر شمارش معکوس با پایتون
💻 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🔹
26👍6❤‍🔥1👨‍💻1
#نکته #سورس_کد #پایتون
👨‍💻 تولید پسوورد با پایتون
📄 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🔹
❤‍🔥61🔥1👌1👀1
#مقاله #هوش_مصنوعی
💎 ده تا از موثرترین و بهترین مقالات حوزه پردازش تصویر که دید خیلی خوبی بهتون میده.
📄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🔹
👍8🥰42🔥2👏2🎉2😁1
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🔹
👍6🔥3🆒1
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🔹
💯17👍3🔥3😎2
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🔹
👍15🔥1👨‍💻1🆒1
#پایتون #سورس_کد #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🔹
25👍7🔥1
Audio
#پادکست #هوش_مصنوعی
🎙جدیترین‌های هوش مصنوعی و پردازش تصویر، گفتگو با پژوهشگر متا
🗓 سال انتشار: 2024
🎙AI Trends 2024 - a conversation with Naila, AI researcher at Meta.
1:52 - CV highlights
10:10 - Pix2Video 
13:16 - ControlNet 
19:39 - ViperGPT 
29:53 - Vision + LLMs
36:34 - Top new tools
40:56 - ControlNet
45:30 - Computer vision
53:00 - 2024 predictions
🔻share with your friends🔻
🔹@OpenCV_olc🔹
👍5🔥2
#پایتون #سورس_کد #FunOpenCV
🖋 تبدیل رشته به متن دستنویس
✒️ Convert text to handwritten
import pywhatkit
pywhatkit.text_to_handwriting('Hello, My Name is Python', save_to='out.png'')

🔻share with your friends🔻
🔹@OpenCV_olc🔹
👍61
#نکته #سورس_کد
🥇ده تا از بهترین ماژول‌های ساخت رابط کاربری گرافیکی (GUI) با پایتون
🏆 Top 10 python modules for creating Graphical user interface (GUI)
1⃣ PyQt5 2⃣ Tkinter 3⃣ Kivy
4⃣ wxPython 5⃣ Libavg
6⃣ PySimpleGUI 7⃣ PyForms
8⃣ PySide2 9⃣ Wax 🔟 PyGUI
🔻share with your friends🔻
🔹@OpenCV_olc🔹
2👍2🍌2🔥1🏆1
This media is not supported in your browser
VIEW IN TELEGRAM
#مقاله #هوش_مصنوعی #سورس_کد
🧍‍♂ تخمین سه‌بعدی موقعیت بدن
🪩 دانلود مقاله (pdf)
💻 دانلود سورس کد (Github)
Resolving 3D Human Pose Ambiguities with 3D Scene Constraints
📄PROX method revolutionizes human pose estimation by incorporating scene constraints.
🔻share with your friends🔻
🔹@OpenCV_olc🔹
💯34👍3👨‍💻1🆒1
This media is not supported in your browser
VIEW IN TELEGRAM
#هوش_مصنوعی #ایده_پردازی
🕊 این سیستم حضور کبوترها رو تشخیص میده و اون‌ها رو از بالکن فراری میده😂
پ. ن: چه کاریه آخه😅
🐦‍⬛️An automated watering system equipped with deep learning to protect our balcony from unwanted pigeons.
🔻share with your friends🔻
🔹@OpenCV_olc🔹
51🤣25🕊4🗿2👍1😢1
This media is not supported in your browser
VIEW IN TELEGRAM
#هوش_مصنوعی #مقاله
🧠 گوگل مدل هوش‌ مصنوعی LUMIERE رو معرفی کرد. این مدل روی بیش از 30 میلیون ویدیو آموزش داده شده و میتونه ویدیوهای باکیفیت و واقع‌گرایانه تولید کنه.
📎 دانلود مقاله (pdf)
📄 Lumiere, is a time-space diffusion model that transforms text and images into realistic AI-generated videos with on-demand editing capabilities.
🔻share with your friends🔻
🔹@OpenCV_olc🔹
🔥6👍4🆒1
#نکته #هوش_مصنوعی #سورس_کد
🥇ده تا از بهترین کتابخانه‌های تحلیل سنتیمنتال
🏆 Top ten Python Libraries for Sentimental Analysis
1⃣ Pattern        2⃣ VADER 
3⃣ BERT            4⃣ TextBlob
5⃣ spaCy          6⃣ CoreNLP 
7⃣ scikit-learn 8⃣ Polyglot 
9⃣ PyTorch      🔟 Flair
🔻share with your friends🔻
🔹@OpenCV_olc🔹
👍48🏆21🔥2😍1
#سورس_کد #پایتون
🎮 ساخت بازی حدس عدد با پایتون
🎮 Guessing game in python
import random
number = random.randint(1, 10)
player_name = input("Hi, What's your name?")
number_of_guesses = 0
print('okay! '+ player_name+ ' I am Guessing a number between 1 and 10:')
while number_of_guesses < 5:
    guess = int(input())
    number_of_guesses += 1
    if guess < number:
        print('Your guess is too low')
    if guess > number:
        print('Your guess is too high')
    if guess == number:
        break
if guess == number:
    print('You guessed the number in ' + str(number_of_guesses) + ' tries!')
else:
    print('You did not guess the number, The number was ' + str(number))

🔻share with your friends🔻
🔹@OpenCV_olc🔹
👍7👨‍💻2
Top5DL_OpenCV_olc.png
681.3 KB
#نکته #هوش_مصنوعی
🥇پنج تا از بهترین کتابخانه‌های یادگیری عمیق
🏆 Top five Python Libraries for Deep Learning
1⃣ TensorFlow
2⃣ Keras
3⃣ PyTorch
4⃣ Caffe
5⃣ DeepLearning4j
🔻share with your friends🔻
🔹@OpenCV_olc🔹
👍3🔥2
2025/07/09 11:45:20
Back to Top
HTML Embed Code: