python_cheat_sheet_@OpenCV_olc.pdf
1.5 MB
#نکته #کتاب #Book
💎 یک مجموعه عالی از مفاهیم و متدهای مقدماتی پایتون
+ همراه با مثال
📄 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🔹
#هوش_مصنوعی
📱حذف بک‌گراند تصویر با هوش مصنوعی
با کمک سایت https://bgremoval.ai خیلی سریع میتونین بک‌گراند تصاویر رو حذف کنین.
📄 A deep learning-based automated background removal technique is newly proposed by bgremoval.ai.
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#هوش_مصنوعی #نکته #سورس_کد
💻 کورس رایگان هوش مصنوعی مولد شرکت Nvidia منتشر شد.
🎞 Nvidia released free online Generative AI course:
📎 https://courses.nvidia.com/courses/course-v1:DLI+S-FX-07+V1/
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#سورس_کد
🎧 پخش صدای بوق سیستم (Beep) از فرکانس 50 هرتز تا 18 کیلوهرتز
ذخیره کنین بعدا تست کنین👌
🔊 This python code generates a beep sound from 50 Hz to 18 KHz.
import winsound, time
print("Telegram: @OpenCV_olc")
for freq in range(50, 18000, 100):
    print("Frequency: ", freq)
    winsound.Beep(freq, 200)

🔻share with your friends🔻
🔹@OpenCV_olc🔹
#سورس_کد
💻 نمونه کد حمله بروت فورس ساده و نمایش مرحله به مرحله پیدا شدن کاراکترها 👾
💻 A simple brute force algorithm and step-by-step visualization of a typical attack for password hacking.
import time, sys
target = 'OpenCV_olc'
guess = ''
for index, character in enumerate(target):
    j = ord(' ')
    while True:
        sys.stdout.write(f'\r{guess}{chr(j)}')
        sys.stdout.flush()
        time.sleep(0.01)
        if chr(j) == character:
            guess += character
            break
        j += 1
print('\n*ACCESS OK*')

🔻share with your friends🔻
🔹@OpenCV_olc🔹
#هوش_مصنوعی #مقاله #سورس_کد
🧠 مدل Arc2Face بر اساس استیبل دیفیوژن کار میکنه و قابلیت تولید تصاویری مشابه و باورپذیر از تصویر ورودی رو داره.
📋 دانلود مقاله (pdf)
💻 دانلود سورس کد (Github)
📄 This model can generate high-quality images of any subject within a few seconds. Additionally, it is built on top of Stable Diffusion and can be extended to different input modalities.
🔻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🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#هوش_مصنوعی
🧠 مدل Imagen2 معرفی شد و علاوه بر امکانات قبلی، قابلیت تبدیل متن به تصویر متحرک و واقع‌گرایانه هم بهش اضافه شده.
📄 Create live images from text prompts with Imagen2 model in Vertex AI. It now also supports inpainting and outpainting, the ability to edit images using AI, expand the border, or add/remove certain parts of the image.
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#کتاب #سورس_کد #Book
📗 کتاب یادگیری سریع پایتون + مثال و کد
🔡 زبان: انگلیسی
نویسنده: Dr. Matloff
📖 تعداد صفحات: 173
📎 دانلود کتاب (pdf)
📗 Fast lane to python (A quick, sensible route to the joys of Python coding)
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#هوش_مصنوعی #مقاله #سورس_کد
✏️ تبدیل اسکچ به تصویر واقعی
📎 دانلود مقاله (pdf)
💻 دانلود سورس کد (Github)
MaskSketch: Unpaired Structure-guided Masked Image Generation
📄 Given an input sketch and its class label, MaskSketch samples realistic images that follow the given structure.
🔻share with your friends🔻
🔹@OpenCV_olc🔹
Machine Learning algorithms-@OpenCV_olc.png
426.6 KB
#هوش_مصنوعی #نکته #ارسالی_از_کاربران
📚 تصویری از پرکاربردترین الگوریتم‌های هوش مصنوعی و یادگیری ماشین در یک نگاه
🔢 اسامی 42 الگوریتم که در 6 دسته زیر تقسیم بندی شده‌اند:
💎 Most commonly used Machine Learning algorithms
1⃣ Supervised Learning
2⃣ Unsupervised Learning
3⃣ Specialized Algorithms
4⃣ Optimization Algorithms
5⃣ Neural networks
6⃣ Reinforcement learning
🙏 Thanks to: M. Durm
🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#هوش_مصنوعی #سورس_کد
🏃‍♂تشخیص و شمارش افراد با YOLOv8
📎 دانلود سورس کد (Github)
💻 This project counts the people entering and leaving an entrance, using YOLOv8 and a tracking algorithm to track and count.
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#نکته #کتاب
🔢 سوالات چهارگزینه‌ای پایتون
🐍 یک مرجع بسیار عالی و رایگان شامل 1000 تست پایتون که در 22 فصل مرتب شده‌اند.
📄 Python MCQ with answers
📎https://www.sanfoundry.com/1000-python-questions-answers/#python-chapters
🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#مقاله #هوش_مصنوعی
💻 افزایش کیفیت ویدیو با هوش مصنوعی
📄 مدل هوش‌مصنوعی VideoGigaGAN به تازگی رونمایی شده و توانایی افزایش کیفیت ویدیوها رو تا 8 برابر داره.
📎دانلود مقاله (pdf)
💻 جزئیات بیشتر (Github)
📄 VideoGigaGAN can enhance the quality and resolution of existing, old, and blurry videos by up to eight times.
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#سورس_کد #نکته #هوش_مصنوعی
🏆 بیش از 700 چیت شیت پایتون😍🔥
در این سایت، چیت شیت‌های پایتونی متنوعی در زمینه‌های مختلف و در سطوح مبتدی تا پیشرفته به صورت رایگان منتشر شده است.
💎ذخیره کنین و برای دوستانتون بفرستین.
💎 Python cheat sheets (FREE)
🗂https://cheatography.com/tag/python
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#سورس_کد #نکته
💻 اصلاح پارامتر گاما در تصویر با پایتون
📄 Gamma correction is a technique used to display colors on your screen accurately.
def gamma_adjust(image, gamma=1.0):
    invGamma = 1.0 / gamma
    table=np.array([((i/255)**invGamma)*255
        for i in np.arange(0, 256)]).astype("uint8")
    return cv2.LUT(image, table)

🔻share with your friends🔻
🔹@OpenCV_olc🔹
#هوش_مصنوعی #نکته
✏️ نوشتن متن ایمیل با هوش مصنوعی
📝 وبسایت زیر مبتنی بر هوش مصنوعی بوده و در نوشتن متن ایمیل و همچنین متن پاسخگویی به ایمیل‌ها به 32 زبان و در 10 قالب (رسمی، دوستانه و...) به شما کمک میکنه.
✏️ Enhance your Email writing with AI-Powered assistance
📎 https://mailgenerator.ai/
🔻share with your friends🔻
🔹@OpenCV_olc🔹
#سورس_کد #هوش_مصنوعی #مقاله
💻 افزایش رزولوشن تصویر با روش EDSR با کمک #یادگیری_عمیق به زبان پایتون
📄 دانلود مقاله (pdf)
📎 دانلود مدل (Github)
Super Resolution of images using EDSR and deep learning in python
sr = cv2.DnnSuperResImpl_create()
sr.readModel("EDSR_x4.pb")
sr.setModel("edsr",4)
result = sr.upsample(img)
resized = cv2.resize(img,dsize=None,fx=4,fy=4)

🔻share with your friends🔻
🔹@OpenCV_olc🔹
This media is not supported in your browser
VIEW IN TELEGRAM
#هوش_مصنوعی #نکته
💻 دیروز شرکت OpenAI مدل GPT-4O رو رونمایی کرد. در این ویدیو تست این مدل بی‌نظیر رو مشاهده میکنین که به زودی در دسترس همه قرار میگیره😍
به صورت خلاصه پنج ویژگی مهم این نسخه نسبت به قبل، به صورت زیر گزارش شده است:
📎 توضیحات بیشتر از openai
Five new GPT-4O features making ChatGPT better than ever
1⃣ Real-time voice conversations
2⃣ Better vision capabilities and multilingual support
3⃣ Create images with readable text
4⃣ Native Mac and Windows apps
5⃣ Everyone can use GPT-4o (free)
🔻share with your friends🔻
🔹@OpenCV_olc🔹
2024/05/15 05:55:36
Back to Top
HTML Embed Code: