🐍 Python & Raspberry 🐍
8.21K subscribers
1.92K photos
125 videos
623 files
1.23K links
Python- Raspberry Pi-AI-IOT
ادمین : فرهاد ناصری زاده
@farhad_naserizadeh
@farhad3412

گروه پایتون
@Python_QA
تبادل
@mmtahmasbi
کانال مرتبط
@new_mathematical
@micropython_iot
@c_micro
اینستاگرام
http://Instagram.com/python_raspberry
Download Telegram
آشنایی مقدماتی با ویولت.pdf
1.1 MB
آشنایی با تبدیل ویولت

گرد آورنده: امید صیادی

🆔 @raspberry_python
log_edge detector.zip
280.7 KB
کد لبه یابی تصاویر در متلب

🆔 @raspberry_python
#آموزش

بدست آوردن فرکانس(تعداد تکرار) اعداد داخل یک لیست و نمایش بر اساس جدول مرتب شده


from collections import Counter

def frequency_table(numbers):

table = Counter(numbers)

numbers_freq = table.most_common()

numbers_freq.sort()

print('Number\tFrequency')

for number in numbers_freq:

print('{0}\t{1}'.format(number[0], number[1]))

if name == '__main__':

scores = [7, 8, 9, 2, 10, 9, 9, 9, 9, 4, 5, 6, 1, 5, 6, 7, 8, 6, 1, 10]

frequency_table(scores)

🌟output:

Number Frequency
1 2
2 1
4 1
5 2
6 3
7 2
8 2
9 5
10 2


🆔 @raspberry_python
#EulerProject
#number_1

If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.

Find the sum of all the multiples of 3 or 5 below 1000.

Url : https://projecteuler.net/problem=1

ثبت نام کنید ، لاگین کنید سپس پاسخ خودتون رو به اشتراک بگذارید اگر صحیح بود جزو Solved by قرار خواهد گرفت:) 👍

🆔 @raspberry_python
🌟 PyWavelets:

کتابخانه کاربردی جهت تبدیل ویولت

طریقه نصب:

pip install PyWavelets

#dsp

🆔 @raspberry_python
پردازش گفتار با تبدیل ویولت

انتشارات اشپرینگر 2018 👇

🆔 @raspberry_python
SpringerBriefs_in_Speech_Technology.pdf
2.7 MB
پردازش گفتار با تبدیل ویولت

انتشارات اشپرینگر 2018

🆔 @raspberry_python
RSA-1.pdf
245.1 KB
رمزنگاری RSA

🆔 @raspberry_python
خم بیضوی و جبر خطی.pdf
570.4 KB
رمزنگاری با خم بیضوی

🆔 @raspberry_python
جزوه اصول رمزنگاری.pdf
1.4 MB
جزوه اصول رمزنگاری

🆔 @raspberry_python
نویز در تصاویر.pdf
4 MB
انواع نویز در تصاویر
(فارسی)
🆔 @raspberry_python
https://www.asme.org/engineering-topics/articles/robotics/leapin-robots

Salto
ربات جهنده ساخته شده در دانشگاه برکلی کالیفرنیا توانایی جهش با سرعت 5 و نیم فوت بر ثانیه است و میتواند در هوا بچرخد و جهش های متوالی روی دیوار انجام بدهد.

🆔 @raspberry_python
نحوه ارتباط RFID با کامپیوتر

🆔 @raspberry_python
مثالی از بدست آوردن میزان وابستگی دو سیگنال
🌟 کاربردی
(رسم نمودار در پست بعد)

import numpy as np
import matplotlib.pyplot as plt

# Fixing random state for reproducibility
np.random.seed(19680801)

dt = 0.01
t = np.arange(0, 30, dt)

nse1 = np.random.randn(len(t)) # white noise 1

nse2 = np.random.randn(len(t)) # white noise 2

# Two signals with a coherent part at 10Hz and a random part

s1 = np.sin(2 * np.pi * 10 * t) + nse1

s2 = np.sin(2 * np.pi * 10 * t) + nse2

fig, axs = plt.subplots(2, 1)
axs[0].plot(t, s1, t, s2)
axs[0].set_xlim(0, 2)
axs[0].set_xlabel('time')
axs[0].set_ylabel('s1 and s2')
axs[0].grid(True)

cxy, f = axs[1].cohere(s1, s2, 256, 1. / dt)

axs[1].set_ylabel('coherence')

fig.tight_layout()
plt.show()

🆔 @raspberry_python
نمودار کد بالا

🆔 @raspberry_python
آی سی mcp23017 افزاینده Gpio

رابط i2c

کاربردی

🆔 @raspberry_python
❇️ @raspberryproject
FaceRec.pdf
1.1 MB
جزوه فارسی روش های تشخیص چهره

🆔 @raspberry_python
Learning.Software.Altium.Designer.pdf
1.7 MB
altium designer آموزش نرم افزار

(آلتیوم دیزاینر)

فارسی
🆔 @raspberry_python