1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
use crate::framer::event_framer::{EventCoordless, SourceType};
use crate::header::EventStreamHeader;
use crate::raw::raw_stream::StreamError;
use serde::{Deserialize, Serialize};
use std::fs::File;
use std::io::{BufReader, BufWriter};
use std::path::Path;
pub mod framer;
mod header;
pub mod raw;
#[cfg(feature = "transcoder")]
pub mod transcoder; pub type D = u8;
pub const D_SHIFT: [u32; 21] = [
1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768, 65536, 131072,
262144, 524288, 1048576,
];
#[derive(Debug, Clone, Copy, Default, Serialize, Deserialize)]
pub enum SourceCamera {
#[default]
FramedU8,
FramedU16,
FramedU32,
FramedU64,
FramedF32,
FramedF64,
Dvs,
DavisU8,
Atis,
Asint,
}
pub const MAX_INTENSITY: f32 = 255.0; pub const D_START: D = 7;
pub const D_MAX: D = 20;
pub type DeltaT = u32;
pub type BigT = u64;
pub type Intensity = f64;
pub type PixelAddress = u16;
pub const EOF_PX_ADDRESS: PixelAddress = u16::MAX;
#[derive(Debug, Copy, Clone, PartialEq, Default, Serialize, Deserialize)]
pub struct Coord {
pub x: PixelAddress,
pub y: PixelAddress,
pub c: Option<u8>,
}
#[derive(Debug, Copy, Clone, PartialEq, Default, Serialize, Deserialize)]
pub struct CoordSingle {
pub x: PixelAddress,
pub y: PixelAddress,
}
#[derive(Debug, Copy, Clone, PartialEq, Default, Serialize, Deserialize)]
pub struct Event {
pub coord: Coord,
pub d: D,
pub delta_t: DeltaT,
}
#[derive(Debug, Copy, Clone, PartialEq, Default, Serialize, Deserialize)]
pub struct EventSingle {
pub coord: CoordSingle,
pub d: D,
pub delta_t: DeltaT,
}
impl From<&Event> for EventSingle {
fn from(event: &Event) -> Self {
EventSingle {
coord: CoordSingle {
x: event.coord.x,
y: event.coord.y,
},
d: event.d,
delta_t: event.delta_t,
}
}
}
impl From<EventSingle> for Event {
fn from(event: EventSingle) -> Self {
Event {
coord: Coord {
x: event.coord.x,
y: event.coord.y,
c: None,
},
d: event.d,
delta_t: event.delta_t,
}
}
}
pub trait Codec {
fn new() -> Self;
fn get_source_type(&self) -> SourceType;
fn open_writer<P: AsRef<Path>>(&mut self, path: P) -> Result<(), std::io::Error> {
let file = File::create(&path)?;
self.set_output_stream(Some(BufWriter::new(file)));
Ok(())
}
fn open_reader<P: AsRef<Path>>(&mut self, path: P) -> Result<(), std::io::Error> {
let file = File::open(&path)?;
self.set_input_stream(Some(BufReader::new(file)));
Ok(())
}
fn write_eof(&mut self);
fn flush_writer(&mut self);
fn close_writer(&mut self);
fn close_reader(&mut self);
fn set_output_stream(&mut self, stream: Option<BufWriter<File>>);
fn set_input_stream(&mut self, stream: Option<BufReader<File>>);
fn encode_header(
&mut self,
width: u16,
height: u16,
tps: u32,
ref_interval: u32,
delta_t_max: u32,
channels: u8,
codec_version: u8,
source_camera: SourceCamera,
);
fn decode_header(&mut self) -> Result<(), StreamError>;
fn encode_event(&mut self, event: &Event);
fn encode_events(&mut self, events: &[Event]);
fn encode_events_events(&mut self, events: &[Vec<Event>]);
fn decode_event(&mut self) -> Result<Event, StreamError>;
}
#[cfg(test)]
mod tests {
#[test]
fn encode_raw() {}
}