Untitled

mail@pastecode.io avatar
unknown
python
a year ago
806 B
4
Indexable
Never
# Su respuesta aquí
from scidQPSK import make_QPSK, encode_QPSK_waveform, add_noise
from scipy.signal import remez


fs = 8 #
fc = 1 #
N = 120
fw = 1.5
M = 14 #
Ex = 4 #
SNR = 15 #

# Leemos los bits de la imagen cat.png
with open('cat.png', 'rb') as f:
    cat_bs = BitStream(f.read())
    
# Codificamos con QPSK
x = encode_QPSK_waveform(cat_bs, M , Ex)
# Añadimos el delay 
yd = delay_QPSK_waveform(x, N/2)
# Modulamos la señal (yd= x con ruido con delay)
xm = modulate_IQ(yd, fc, fs)
# Añadimos ruido
yr = add_noise(xm, SNR)
# Demodulamos la señal
xd = demodulate_IQ(yr, fc, fs, N, fw)
# Decodificamos QPSK
cat_rx = decode_QPSK_waveform(xd, M, Ex)

# Escribimos los bits recibidos en cat_rx.png
with open('cat_rx.png', 'wb') as f:
     f.write(cat_rx.read(bytes))