Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dernasherbrezon/ssdv4j

Decode ssdv protocol
https://github.com/dernasherbrezon/ssdv4j

abbreviated java jpeg ssdv

Last synced: about 1 month ago
JSON representation

Decode ssdv protocol

Awesome Lists containing this project

README

        

## About [![Build Status](https://travis-ci.com/dernasherbrezon/ssdv4j.svg?branch=master)](https://travis-ci.com/dernasherbrezon/ssdv4j) [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=ru.r2cloud%3Assdv4j&metric=alert_status)](https://sonarcloud.io/dashboard?id=ru.r2cloud%3Assdv4j)

SSDV decoder, written in java.

## Usage

Configure maven:

```xml

ru.r2cloud
ssdv4j
1.3

```

Configure source. It can be ```java.util.List``` or ```ru.r2cloud.ssdv.SsdvInputStream```. For example:

```java
try (SsdvInputStream is = new SsdvInputStream(SsdvInputStreamTest.class.getClassLoader().getResourceAsStream("file.bin"), 189)) {
SsdvDecoder decoder = new SsdvDecoder(is);
while (decoder.hasNext()) {
SsdvImage cur = decoder.next();
}
}
```

Class ```ru.r2cloud.ssdv.SsdvImage``` contains ```java.awt.image.BufferedImage``` and some ssdv statistics.