OpenCV | Python

#ایده_پردازی
Канал
Логотип телеграм канала OpenCV | Python
@opencv_olcПродвигать
9,61 тыс.
подписчиков
301
фото
169
видео
232
ссылки
#ایده‌_پردازی پردازش‌تصویر پایتون، opencv، #یادگیری_عمیق،#پادکست‌🎧 📌تبلیغات: @ADS_OpenCV دانلود کتاب‌های من📚: https://www.ketabrah.ir/author/52174 دوره پایتون: https://olc.sadjad.ac.ir/?product=دوره-صفر-تا-صد-پایتون-python 📩[email protected]
This media is not supported in your browser
VIEW IN TELEGRAM
#ایده_پردازی #سورس_کد #پایتون #مقاله
🥷 تشخیص دزدی و رفتارهای مشکوک در فروشگاه‌ها و مکان‌های عمومی با کمک #بینایی_کامپیوتر و #هوش_مصنوعی
💎 امروزه این گونه سیستم‌ها به شدت مورد نیاز هست و میتونه خیلی سریع به صورت کاربردی مورد استفاده قرار بگیره.
💻 دانلود سورس کد (Github)
📄 دانلود مقاله مرتبط (pdf)
🥷 Suspicious behavior detection on shoplifting using image processing
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#سورس_کد #پایتون #ایده_پردازی
🔊 با کدهای پایتون زیر میتونین یک نرم‌افزار خیلی ساده برای تبدیل متن به صوت درست کنین. اگه برنامه نویس تازه کار هستین حتما ذخیره کنین و سرفرصت امتحانش کنین😍
🔊 Simple Text to Speech in python
import pyttsx3, tkinter as tk
def on_click():
    engine = pyttsx3.init()
    engine.say(En.get())
    engine.runAndWait()
window = tk.Tk()
window.geometry("500x200")
Text = tk.Label(window, text="Type Here!")
Text.pack(padx=10, pady=10)
En = tk.Entry()
En.pack(padx=10, pady=10)
Say = tk.Button(text="CLICK ME!", command=on_click)
Say.pack(padx=10, pady=10)
window.mainloop()

🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#هوش_مصنوعی #مقاله #ایده_پردازی
یکی از موضوعاتی که به تازگی خیلی مورد استقبال قرار گرفته، استفاده از بینایی کامپیوتر در انبارداری و مدیریت لجستیک هست.
📎 دانلود مقاله (pdf)
📄 Computer Vision in Warehousing and Logistics
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#سورس_کد #ایده_پردازی #کتاب #پایتون
💎 ساخت کتاب صوتی با پایتون
📚 با کمک این ایده میتونین متن فایل pdf رو دریافت کنین و با کمک ماژول pyttsx3 به صوت تبدیل کرده و با پسوند mp3 ذخیره کنین.
📗 Create an Audiobook in Python
First PyPDF2 splits the pdf file page by page, then read the text on each page, then send the text to pyttsx3 module to create an audiobook.
import PyPDF2
import pyttsx3
pdfReader = PyPDF2.PdfFileReader(open('file.pdf', 'rb'))
speaker = pyttsx3.init()
for page_num in range(pdfReader.numPages):
    text =  pdfReader.getPage(page_num).extractText()
    speaker.say(text)
    speaker.runAndWait()
speaker.stop()
engine.save_to_file(text, 'audio.mp3')
engine.runAndWait()

🔻share with your friends🔻
🔹@OpenCV_olc🔹
#ایده_پردازی #سورس_کد
رسم دانه برف با پایتون
Draw snowflake in python
from turtle import *
def snow(length, depth):
   if depth>0:
        for i in range(6):
            forward(length)
            snow(length//3, depth-1)
            backward(length)
            left(60)
# t.me/OpenCV_olc
snow(150,3)
🔻share with your friends🔻
🔹@OpenCV_olc🔹
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🔹
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
#هوش_مصنوعی #ایده_پردازی
🖥 تبدیل اسکچ UI به کد HTML با کمک هوش‌مصنوعی و پردازش تصویر
🖌 This project scans your sketches in real-time and outputs a fully working digital-designed wireframe.
🔻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
#سورس_کد #ارسالی_از_کاربران
#ایده_پردازی #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
#مقاله #ایده_پردازی #سورس_کد
🏀 تشخیص و ردیابی بازیکنان بسکتبال
📎دانلود سورس کد (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
#ایده_پردازی #پروژه_کاربردی_صنعتی
#کتاب #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
#ایده_پردازی #سطح_پیشرفته
📱ردیابی شماره تلفن به صورت آنلاین و نمایش موقعیت روی نقشه با زبان پایتون
📄In this project, you can input a phone number and find its location, displaying it on an online map🤙
🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#ایده_پردازی #کتاب
🤖این ربات با استفاده از تشخیص رنگ، موقعیت شارژر رو پیدا میکنه و به سمتش حرکت میکنه.
📖 تمام مباحث تشخیص و ردیابی اشیاء از روی رنگ با کمک OpenCV رو در فصل 15 کتابم آموزش دادم.
🤖AI Robot Self-Charging at Home using image processing
🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#ایده_پردازی
استفاده از پردازش تصویر در بازی شطرنج به صورت Real-time
♛ Chess monitoring system using image processing
📄This project can detect board and chess pieces without having camera be overhead.
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#هوش_مصنوعی #ایده_پردازی
از میدجرنی خواستم لوگوی پایتون رو در دنیای واقعی تصور کنه🐍👌
📢 منتشر کنین تا برسه دست آقای روسوم 😂
🐍 An image of the Python logo in the real world (Midjourney)
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#ایده_پردازی #هوش_مصنوعی
وقتی مونالیزا تبدیل به سیندرلا، سفید برفی، فیونا و انیمه و... میشه😂
این تصاویر کاملا با هوش مصنوعی فانیکاتور ساخته شدن. حتما امتحانش کنین👌
📎 https://funnycature.ali110co.ir
👩‍💼These images were created entirely using FunnyCature AI.
Thanks to: @ali110co_ir
🔻share with your friends🔻
🔹@OpenCV_olc🔹
quickdrawOutput-@OpenCV_olc.jpg
52 KB
#هوش_مصنوعی #ایده_پردازی
🎨 این یک بازی آنلاین هست که 20 ثانیه فرصت دارین مواردی که ازتون خواسته میشه رو طراحی کنین و هوش مصنوعی اگه تونست اون رو تشخیص بده امتیاز میگیرین. اگه احساس میکنین طراح خوبی هستین حتما امتحانش کنین👌
(من که راحت 6 از 6 گرفتم😂)
🎨 Can a neural network learn to recognize doodling?
This is a game built with machine learning. You draw, and a artificial intelligence tries to guess what you’re drawing.
📎https://quickdraw.withgoogle.com/
🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#هوش_مصنوعی #ایده_پردازی
⚽️ تخمین جهت توپ در ضربه پنالتی
⚽️This system uses computer vision and artificial intelligence, estimates the trajectory of a soccer ball before the player takes a shot.
🔻share with your friends🔻
🔹@OpenCV_olc🔹
Ещё