Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#!/usr/bin/env python
from __future__ import division
from pysstv.sstv import SSTV, byte_to_freq
class GrayscaleSSTV(SSTV):
def on_init(self):
self.pixels = self.image.convert('LA').load()
def gen_image_tuples(self):
for line in range(self.HEIGHT):
yield from self.horizontal_sync()
yield from self.encode_line(line)
def encode_line(self, line):
msec_pixel = self.SCAN / self.WIDTH
image = self.pixels
for col in range(self.WIDTH):
pixel = image[col, line]
freq_pixel = byte_to_freq(pixel[0])
yield freq_pixel, msec_pixel
class Robot8BW(GrayscaleSSTV):
VIS_CODE = 0x02
WIDTH = 160
HEIGHT = 120
SYNC = 7
SCAN = 60
class Robot24BW(GrayscaleSSTV):
VIS_CODE = 0x0A
WIDTH = 320
HEIGHT = 240
SYNC = 7
SCAN = 93
MODES = (Robot8BW, Robot24BW)