Telegram Web Link
This media is not supported in your browser
VIEW IN TELEGRAM
#مقاله #سورس_کد #نکته
🏆 مقالاتی که بیشترین ارجاعات رو در حوزه یادگیری ماشین داشتن (بخش 1)
💾 ذخیره کنین بعدا مطالعه کنین.
🥇MOST CITED PAPERS IN ML
1⃣ DEEP RESIDUAL LEARNING FOR IMAGE RECOGNITION
------------------------------------------
2⃣ IMAGENET CLASSIFICATION
------------------------------------------
3⃣ ADAM: A METHOD FOR STOCHASTIC OPTIMIZATION
------------------------------------------
4⃣ RANDOM FORESTS
------------------------------------------
5⃣ DEEP CONVOLUTIONAL NET
------------------------------------------
6⃣ SUPPORT-VECTOR NET

مشاهده بخش بعدی
🔻share with your friends🔻
🔹@OpenCV_olc🔹
4👍3🔥1
#سورس_کد #هوش_مصنوعی #کتاب #پایتون
👨تشخیص چهره با پایتون
📎 دانلود مدل (Github)
📖 کتاب آموزش جامع پردازش تصویر با OpenCV و Python (فصل هفدهم):
http://ketabrah.ir/go/b64755
👩 Face detection using Python
import cv2
model = cv2.CascadeClassifier('face_detector.xml')
img = cv2.imread('image.jpg')
faces = model.detectMultiScale(img, 1.1, 4)
for (x, y, w, h) in faces:
  cv2.rectangle(img, (x, y), (x+w, y+h), (255, 0, 0), 2)
cv2.imwrite("face_detected.png", img)
print('output saved')

🔻share with your friends🔻
🔹@OpenCV_olc🔹
19👍6💯2
This media is not supported in your browser
VIEW IN TELEGRAM
#هوش_مصنوعی #مقاله #سورس_کد
💎 مدل YOLOv9 منتشر شد.
- سریعتر، دقیقتر و بهینه‌تر از مدل‌های مشابه
📎 دانلود مقاله (pdf)
💻 دانلود سورس کد (Github)
YOLOv9 is out 🔥
📄 We combined the proposed PGI and GELAN, then designed a new generation of YOLO object detection system, which we call YOLOv9.
🔻share with your friends🔻
🔹@OpenCV_olc🔹
🔥7👍4💯3🆒2
#هوش_مصنوعی #نکته
💻 امروز مدل Stable Diffusion 3 منتشر شد. این مدل نسبت به قبل کیفیت تصاویر خروجی را افزایش داده و همچنین به طور ویژه روی نوشتن متن‌ها داخل تصویر بهبود داده شده است.
این تصویر حاصل پرامپت ورودی زیر است.
📄 Stability AI Launches SD3 to Lead in AI-Generated Images
Prompt: Photo of an 90's desktop computer on a work desk, on the computer screen it says "welcome". On the wall in the background we see beautiful graffiti with the text "SD3" very large on the wall.
🔻share with your friends🔻
🔹@OpenCV_olc🔹
👏6🔥4👍3😍3🤩2
This media is not supported in your browser
VIEW IN TELEGRAM
#هوش_مصنوعی
🖥 استفاده از مدل جمینای در افزونه جدید کروم (Help me write)
⬅️ به تازگی گوگل افزونه Help me write رو برای کروم منتشر کرده که با کمک مدل قدرتمند جمینای در نوشتن متن‌ها به کاربران کمک میکنه. امکان بازنویسی متون، تغییر لحن و اندازه جمله نیز در این سرویس امکان پذیره.
🌐 مراحل فعال سازی در کروم
📄 You can now turn on “Help me write,” a new experimental AI feature in Chrome that can help you write content online.
🔻share with your friends🔻
🔹@OpenCV_olc🔹
👍4😍41
#سورس_کد #پایتون
📄 تبدیل متن به pdf با پایتون
PDF Generator in python
📄 You can generate PDF files from text or HTML content.
from reportlab.pdfgen import canvas
pdf_file = 'output.pdf'
text = 'This is a sample PDF.'
c = canvas.Canvas(pdf_file)
c.drawString(100, 750, text)
c.save()

🔻share with your friends🔻
🔹@OpenCV_olc🔹
3👍3🗿1🆒1
#سورس_کد #پایتون
💻 بک‌آپ فایل‌ها با پایتون
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🔹
👍83💯2
#سورس_کد #پایتون
💻 وب سرور ساده با پایتون
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🔹
👍53🔥3💋3
#هوش_مصنوعی #نکته
🙋‍♂ چند نفر توی کل دنیا شبیه تو هستن؟
با این سایت چهره‌های شبیه خودتون رو در کل اینترنت و شبکه‌های اجتماعی پیدا کنین😂
Find People Online by Photo
🌐 https://facecheck.id/
🔻share with your friends🔻
🔹@OpenCV_olc🔹
16👍3🤣2🔥1
#سورس_کد #هوش_مصنوعی #پایتون
👨‍💻 تبدیل متن به صوت با پایتون
🗣 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🔹
👍126👏3❤‍🔥2🤩1🆒1
#سورس_کد #پایتون
🔄 تبدیل اعداد یونانی به دسیمال با پایتون
🔄 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🔹
👍2🆒2🔥1
#هوش_مصنوعی #نکته #مقاله
🏆 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🔹
👍1815🔥1😍1🌚1😘1
#هوش_مصنوعی
💎 به تازگی گوگل در کنار مدل قدرتمند جمینای، مدل هوش مصنوعی 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🔹
5👍5👏4🔥3🎉2🤩2💯1🍌1
#هوش_مصنوعی #نکته
💻 10 تا از بهترین کتابخانه‌های بینایی کامپیوتر و پردازش تصویر در پایتون
💎 10 best CV libraries in python
1⃣ OpenCV   2⃣ fastai
3⃣ IPSDK      4⃣ Mahotas
5⃣ Keras       6⃣ Matplotlib
7⃣ Pytes       8⃣ PyTorchCV
9⃣ Scikit       🔟 SimpleCV
🔻share with your friends🔻
🔹@OpenCV_olc🔹
👍42🙏2🔥1
#سورس_کد #ایده_پردازی #کتاب #پایتون
💎 ساخت کتاب صوتی با پایتون
📚 با کمک این ایده میتونین متن فایل 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🔹
👍4622😍3💯2🆒2
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🔹
👍3🔥2👏1
#سورس_کد #هوش_مصنوعی #پایتون #پردازش_تصویر #بینایی_کامپیوتر
🚗 تشخیص اتومبیل با پایتون
📎 دانلود مدل (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🔹
👍9👌2😢1🎅1
#کتاب #Book #نکته #پایتون #پردازش_تصویر #آموزش_پایتون
📕 کتاب آموزش صفر تا صد پایتون:
📎http://ketabrah.ir/go/b64788

📗 کتاب آموزش جامع پردازش تصویر:
📎http://ketabrah.ir/go/b64755
🔻share with your friends🔻
🔹@OpenCV_olc🔹
7👍6🎉3🔥2👏2🤩2😘1
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🔹
👍7❤‍🔥1👏1🆒1
Ramadan.py
5.9 KB
2🙏2👍1
2025/07/09 18:55:40
Back to Top
HTML Embed Code: