pySSTV/pysstv/color.py

153 wiersze
4.0 KiB
Python
Czysty Zwykły widok Historia

#!/usr/bin/env python
from __future__ import division
from six.moves import range
from pysstv.sstv import byte_to_freq, FREQ_BLACK, FREQ_WHITE, FREQ_VIS_START
from pysstv.grayscale import GrayscaleSSTV
2013-11-22 16:05:13 +00:00
from itertools import chain
2013-06-18 22:15:18 +00:00
RED, GREEN, BLUE = range(3)
class ColorSSTV(GrayscaleSSTV):
2013-11-22 17:33:39 +00:00
def on_init(self):
self.pixels = self.image.load()
2013-06-18 22:15:18 +00:00
def encode_line(self, line):
msec_pixel = self.SCAN / self.WIDTH
2013-11-22 17:33:39 +00:00
image = self.pixels
for index in self.COLOR_SEQ:
2013-06-18 22:15:18 +00:00
for item in self.before_channel(index):
yield item
for col in range(self.WIDTH):
pixel = image[col, line]
2013-06-18 22:15:18 +00:00
freq_pixel = byte_to_freq(pixel[index])
yield freq_pixel, msec_pixel
for item in self.after_channel(index):
yield item
2013-06-18 22:15:18 +00:00
def before_channel(self, index):
return []
2013-06-18 22:15:18 +00:00
after_channel = before_channel
2013-05-30 17:00:00 +00:00
class MartinM1(ColorSSTV):
COLOR_SEQ = (GREEN, BLUE, RED)
2013-06-18 22:15:18 +00:00
VIS_CODE = 0x2c
WIDTH = 320
HEIGHT = 256
SYNC = 4.862
SCAN = 146.432
INTER_CH_GAP = 0.572
2013-06-18 22:15:18 +00:00
def before_channel(self, index):
if index == GREEN:
2013-06-18 22:15:18 +00:00
yield FREQ_BLACK, self.INTER_CH_GAP
2013-06-18 22:15:18 +00:00
def after_channel(self, index):
yield FREQ_BLACK, self.INTER_CH_GAP
2013-05-30 17:00:16 +00:00
class MartinM2(MartinM1):
2013-06-18 22:15:18 +00:00
VIS_CODE = 0x28
WIDTH = 160
SCAN = 73.216
class ScottieS1(MartinM1):
2013-06-18 22:15:18 +00:00
VIS_CODE = 0x3c
SYNC = 9
INTER_CH_GAP = 1.5
SCAN = 138.24 - INTER_CH_GAP
2013-06-18 22:15:18 +00:00
def horizontal_sync(self):
return []
2013-06-18 22:15:18 +00:00
def before_channel(self, index):
if index == RED:
2013-06-18 22:15:18 +00:00
for item in MartinM1.horizontal_sync(self):
yield item
yield FREQ_BLACK, self.INTER_CH_GAP
class ScottieS2(ScottieS1):
2013-06-18 22:15:18 +00:00
VIS_CODE = 0x38
SCAN = 88.064 - ScottieS1.INTER_CH_GAP
WIDTH = 160
2013-11-22 16:05:13 +00:00
class Robot36(ColorSSTV):
VIS_CODE = 0x08
WIDTH = 320
HEIGHT = 240
SYNC = 9
INTER_CH_GAP = 4.5
Y_SCAN = 88
C_SCAN = 44
PORCH = 1.5
SYNC_PORCH = 3
INTER_CH_FREQS = [None, FREQ_WHITE, FREQ_BLACK]
def on_init(self):
self.yuv = self.image.convert('YCbCr').load()
2013-11-22 16:05:13 +00:00
def encode_line(self, line):
pixels = [self.yuv[col, line] for col in range(self.WIDTH)]
channel = 2 - (line % 2)
y_pixel_time = self.Y_SCAN / self.WIDTH
uv_pixel_time = self.C_SCAN / self.WIDTH
2013-11-22 16:05:13 +00:00
return chain(
[(FREQ_BLACK, self.SYNC_PORCH)],
((byte_to_freq(p[0]), y_pixel_time) for p in pixels),
2013-11-22 16:05:13 +00:00
[(self.INTER_CH_FREQS[channel], self.INTER_CH_GAP),
(FREQ_VIS_START, self.PORCH)],
((byte_to_freq(p[channel]), uv_pixel_time) for p in pixels))
class PasokonP3(ColorSSTV):
"""
[ VIS code or horizontal sync here ]
Back porch - 5 time units of black (1500 Hz).
Red component - 640 pixels of 1 time unit each.
Gap - 5 time units of black.
Green component - 640 pixels of 1 time unit each.
Gap - 5 time units of black.
Blue component - 640 pixels of 1 time unit each.
Front porch - 5 time units of black.
Horizontal Sync - 25 time units of 1200 Hz.
"""
TIMEUNIT = 1000/4800. # ms
COLOR_SEQ = (RED, GREEN, BLUE)
VIS_CODE = 0x71
WIDTH = 640
HEIGHT = 480+16
SYNC = 25 * TIMEUNIT
SCAN = WIDTH * TIMEUNIT
INTER_CH_GAP = 5 * TIMEUNIT
def before_channel(self, index):
if index == self.COLOR_SEQ[0]:
yield FREQ_BLACK, self.INTER_CH_GAP
2013-11-22 16:05:13 +00:00
def after_channel(self, index):
yield FREQ_BLACK, self.INTER_CH_GAP
class PasokonP5(PasokonP3):
TIMEUNIT = 1000/3200. # ms
VIS_CODE = 0x72
SYNC = 25 * TIMEUNIT
SCAN = PasokonP3.WIDTH * TIMEUNIT
INTER_CH_GAP = 5 * TIMEUNIT
class PasokonP7(PasokonP3):
TIMEUNIT = 1000/2400. # ms
VIS_CODE = 0xF3
SYNC = 25 * TIMEUNIT
SCAN = PasokonP3.WIDTH * TIMEUNIT
INTER_CH_GAP = 5 * TIMEUNIT
MODES = (MartinM1, MartinM2, ScottieS1, ScottieS2, Robot36, PasokonP3, PasokonP5, PasokonP7)