#سورس_کد #پایتون
💻 بکآپ فایلها با پایتون
Data Backup in python
📄 Automate the backup of files and directories to ensure data safety:
🔻share with your friends🔻
🔹@OpenCV_olc🔹
💻 بکآپ فایلها با پایتون
Data Backup in python
📄 Automate the backup of files and directories to ensure data safety:
import shutil
source_folder = '/source_folder'
backup_folder = '/backup_folder'
shutil.copytree(source_folder, backup_folder)
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#سورس_کد #پایتون
💻 وب سرور ساده با پایتون
Simple Web Server in python
📄 Create a basic HTTP server for testing and development:
🔻share with your friends🔻
🔹@OpenCV_olc🔹
💻 وب سرور ساده با پایتون
Simple Web Server in python
📄 Create a basic HTTP server for testing and development:
import http.server
import socketserver
port = 8000
with socketserver.TCPServer(('', port), http.server.SimpleHTTPRequestHandler) as httpd:
print(f"Serving at port {port}")
httpd.serve_forever()
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#هوش_مصنوعی #نکته
🙋♂ چند نفر توی کل دنیا شبیه تو هستن؟
با این سایت چهرههای شبیه خودتون رو در کل اینترنت و شبکههای اجتماعی پیدا کنین😂
Find People Online by Photo
🌐 https://facecheck.id/
🔻share with your friends🔻
🔹@OpenCV_olc🔹
🙋♂ چند نفر توی کل دنیا شبیه تو هستن؟
با این سایت چهرههای شبیه خودتون رو در کل اینترنت و شبکههای اجتماعی پیدا کنین😂
Find People Online by Photo
🌐 https://facecheck.id/
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#سورس_کد #هوش_مصنوعی #پایتون
👨💻 تبدیل متن به صوت با پایتون
🗣 Text to Speech in python
This code converts the provided text into a speech format.
🔻share with your friends🔻
🔹@OpenCV_olc🔹
👨💻 تبدیل متن به صوت با پایتون
🗣 Text to Speech in python
This code converts the provided text into a speech format.
from gtts import gTTS
import os
tts = gTTS(text="Hello. Join telegram channel @OpenCV_olc", lang='en')
tts.save("out.mp3")
os.system("out.mp3")
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#سورس_کد #پایتون
🔄 تبدیل اعداد یونانی به دسیمال با پایتون
🔄 Convert Roman numbers to decimals in python:
🔻share with your friends🔻
🔹@OpenCV_olc🔹
🔄 تبدیل اعداد یونانی به دسیمال با پایتون
🔄 Convert Roman numbers to decimals in python:
ROMAN = {'I': 1, 'V': 5, 'X': 10, 'L': 50, 'C': 100, 'D': 500, 'M': 1000}
SUM = 0
romanNum = 'VI'
for i in range(len(romanNum) - 1):
left = romanNum[i]
right = romanNum[i + 1]
if ROMAN[left] < ROMAN[right]:
SUM -= ROMAN[left]
else:
SUM += ROMAN[left]
SUM += ROMAN[romanNum[-1]]
print(SUM)
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#هوش_مصنوعی #نکته #مقاله
🏆 10 تا از بهترین ابزارهای مبتنی بر هوش مصنوعی که در نوشتن متن، بررسی گرامر، چک کردن شباهت متن و پارافریز متن میتونه بهتون کمک کنه.
📄 Top 10 AI tools that are invaluable for writing, offering efficiency, precision, and enhanced productivity to researchers and students alike.
1⃣ Grammarly 2⃣ Zotero
3⃣ Copyscape 4⃣ Ref-N-Write
5⃣ EndNote 6⃣ Quetext
7⃣ ProWriting 8⃣ Mendeley
9⃣ IBM Wats 🔟 Evernote
🔻share with your friends🔻
🔹@OpenCV_olc🔹
🏆 10 تا از بهترین ابزارهای مبتنی بر هوش مصنوعی که در نوشتن متن، بررسی گرامر، چک کردن شباهت متن و پارافریز متن میتونه بهتون کمک کنه.
📄 Top 10 AI tools that are invaluable for writing, offering efficiency, precision, and enhanced productivity to researchers and students alike.
1⃣ Grammarly 2⃣ Zotero
3⃣ Copyscape 4⃣ Ref-N-Write
5⃣ EndNote 6⃣ Quetext
7⃣ ProWriting 8⃣ Mendeley
9⃣ IBM Wats 🔟 Evernote
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#هوش_مصنوعی
💎 به تازگی گوگل در کنار مدل قدرتمند جمینای، مدل هوش مصنوعی Gemma را برای انجام کارهای سبکتر مانند خلاصه سازی متون، ویرایش، استفاده در چتباتهای ساده و... معرفی کرد.
📄 A family of lightweight, state-of-the art open models built from the same research and technology used to create the Gemini models.
📎https://ai.google.dev/gemma
🔻share with your friends🔻
🔹@OpenCV_olc🔹
💎 به تازگی گوگل در کنار مدل قدرتمند جمینای، مدل هوش مصنوعی Gemma را برای انجام کارهای سبکتر مانند خلاصه سازی متون، ویرایش، استفاده در چتباتهای ساده و... معرفی کرد.
📄 A family of lightweight, state-of-the art open models built from the same research and technology used to create the Gemini models.
📎https://ai.google.dev/gemma
🔻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.
🔻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🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#هوش_مصنوعی
💻 موضوع اصلی رو شما مشخص کنین، بعدش در عرض چند دقیقه هوش مصنوعی GAMMA، محتوا، جمله سازی و تولید تصاویر رو براتون انجام میده.
📄 Create beautiful presentations in minutes with an AI designer that automates the structure, content, and visuals.
🌎 https://gamma.app/
🔻share with your friends🔻
🔹@OpenCV_olc🔹
💻 موضوع اصلی رو شما مشخص کنین، بعدش در عرض چند دقیقه هوش مصنوعی GAMMA، محتوا، جمله سازی و تولید تصاویر رو براتون انجام میده.
📄 Create beautiful presentations in minutes with an AI designer that automates the structure, content, and visuals.
🌎 https://gamma.app/
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#سورس_کد #هوش_مصنوعی #پایتون #پردازش_تصویر #بینایی_کامپیوتر
🚗 تشخیص اتومبیل با پایتون
📎 دانلود مدل (Github)
🚙 Car detection in python
🔻share with your friends🔻
🔹@OpenCV_olc🔹
🚗 تشخیص اتومبیل با پایتون
📎 دانلود مدل (Github)
🚙 Car detection in python
import cv2
cap = cv2.VideoCapture('video.avi')
car_cascade = cv2.CascadeClassifier('cars.xml')
while True:
ret, frames = cap.read()
gray = cv2.cvtColor(frames, cv2.COLOR_BGR2GRAY)
cars = car_cascade.detectMultiScale(gray, 1.1, 1)
for (x,y,w,h) in cars:
cv2.rectangle(frames,(x,y),(x+w,y+h),(255,0,0),2)
cv2.imshow('video', frames)
if cv2.waitKey(30) == 27:
break
cv2.destroyAllWindows()
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#کتاب #Book #نکته #پایتون #پردازش_تصویر #آموزش_پایتون
📕 کتاب آموزش صفر تا صد پایتون:
📎http://ketabrah.ir/go/b64788
📗 کتاب آموزش جامع پردازش تصویر:
📎http://ketabrah.ir/go/b64755
🔻share with your friends🔻
🔹@OpenCV_olc🔹
📕 کتاب آموزش صفر تا صد پایتون:
📎http://ketabrah.ir/go/b64788
📗 کتاب آموزش جامع پردازش تصویر:
📎http://ketabrah.ir/go/b64755
🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#هوش_مصنوعی #ارسالی_از_کاربران #مقاله
💻 مقایسه عملکرد مدل YOLO8 و YOLO9
📎 دانلود مقاله (pdf)
📄 YOLOv9 Faster and More Accurate Object Detection
Performance of YOLOv8 and YOLOv9 on the KITTI dataset.
🙏 Thanks to: A. Singla
🔻share with your friends🔻
🔹@OpenCV_olc🔹
💻 مقایسه عملکرد مدل YOLO8 و YOLO9
📎 دانلود مقاله (pdf)
📄 YOLOv9 Faster and More Accurate Object Detection
Performance of YOLOv8 and YOLOv9 on the KITTI dataset.
🙏 Thanks to: A. Singla
🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#سورس_کد
ماژول turtle از بهترین ابزارهایی هست که میتونین باهاش رسمهای مختلفی انجام بدین.
💻 دانلود سورس کد
Ramadan Mubarak❤️
🌙 May we all greatly benefit from this holy month.
🔻share with your friends🔻
🔹@OpenCV_olc🔹
ماژول turtle از بهترین ابزارهایی هست که میتونین باهاش رسمهای مختلفی انجام بدین.
💻 دانلود سورس کد
Ramadan Mubarak❤️
🌙 May we all greatly benefit from this holy month.
🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#هوش_مصنوعی #مقاله
💻 سگمنتیشن با روش STEGO
این روش برخلاف روشهای موجود، نیازی به آموزش مدل بر روی دادههای لیبلدار نداره.
📎 دانلود مقاله (pdf)
📄 STEGO: assigning every single pixel of the world a label without any human supervision.
🔻share with your friends🔻
🔹@OpenCV_olc🔹
💻 سگمنتیشن با روش STEGO
این روش برخلاف روشهای موجود، نیازی به آموزش مدل بر روی دادههای لیبلدار نداره.
📎 دانلود مقاله (pdf)
📄 STEGO: assigning every single pixel of the world a label without any human supervision.
🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#هوش_مصنوعی #نکته #مقاله
🔥 گوگل مدل SIMA رو معرفی کرد.
🎮 این مدل هوش مصنوعی توانایی انجام بازیهای ویدیویی رو داره و شبیه یک انسان محیط بازی رو درک میکنه و تعامل داره.
📎 دانلود مقاله (pdf)
📄 SIMA is an AI agent that can perceive and understand a variety of environments, then take actions to achieve an instructed goal. SIMA was evaluated across 600 basic skills, spanning navigation, object interaction, and menu use.
🔻share with your friends🔻
🔹@OpenCV_olc🔹
🔥 گوگل مدل SIMA رو معرفی کرد.
🎮 این مدل هوش مصنوعی توانایی انجام بازیهای ویدیویی رو داره و شبیه یک انسان محیط بازی رو درک میکنه و تعامل داره.
📎 دانلود مقاله (pdf)
📄 SIMA is an AI agent that can perceive and understand a variety of environments, then take actions to achieve an instructed goal. SIMA was evaluated across 600 basic skills, spanning navigation, object interaction, and menu use.
🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#هوش_مصنوعی #مقاله #سورس_کد
🎾 استفاده از هوش مصنوعی و پردازش تصویر در تشخیص مسیر و سرعت توپ تنیس
📎 دانلود مقاله (pdf)
💻 دانلود سورس کد (Github)
🎾 Tennis ball detection using image processing and TrackNet
🔻share with your friends🔻
🔹@OpenCV_olc🔹
🎾 استفاده از هوش مصنوعی و پردازش تصویر در تشخیص مسیر و سرعت توپ تنیس
📎 دانلود مقاله (pdf)
💻 دانلود سورس کد (Github)
🎾 Tennis ball detection using image processing and TrackNet
🔻share with your friends🔻
🔹@OpenCV_olc🔹
python_cheat_sheet_@OpenCV_olc.pdf
1.5 MB
#نکته #کتاب #Book #پایتون
💎 یک مجموعه عالی از مفاهیم و متدهای مقدماتی پایتون
+ همراه با مثال
📄 Python cheat sheet
🔻share with your friends🔻
🔹@OpenCV_olc🔹
💎 یک مجموعه عالی از مفاهیم و متدهای مقدماتی پایتون
+ همراه با مثال
📄 Python cheat sheet
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#مقاله #سورس_کد #نکته
🏆 مقالاتی که بیشترین ارجاعات رو در حوزه یادگیری ماشین داشتند (بخش 2)
⏪ مشاهده بخش قبلی
🥇MOST CITED PAPERS IN ML
7⃣ LIBSVM: A LIBRARY FOR SVM
-------------------------------------
8⃣ SCIKIT-LEARN: ML IN PYTHON
-------------------------------------
9⃣ DEEP LEARNING
-------------------------------------
🔟 GRADIENT-BASED LEARNING
🔻share with your friends🔻
🔹@OpenCV_olc🔹
🏆 مقالاتی که بیشترین ارجاعات رو در حوزه یادگیری ماشین داشتند (بخش 2)
⏪ مشاهده بخش قبلی
🥇MOST CITED PAPERS IN ML
7⃣ LIBSVM: A LIBRARY FOR SVM
-------------------------------------
8⃣ SCIKIT-LEARN: ML IN PYTHON
-------------------------------------
9⃣ DEEP LEARNING
-------------------------------------
🔟 GRADIENT-BASED LEARNING
🔻share with your friends🔻
🔹@OpenCV_olc🔹