first commit.

This commit is contained in:
2022-07-12 09:40:35 +09:00
commit 5c39e9d57f
5 changed files with 514 additions and 0 deletions

41
README.md Normal file
View File

@ -0,0 +1,41 @@
# BioFormatsImageInfo
Metadata extraction tool based on Bio-Formats
### Compile
```shell
mvn compile
```
### run
```shell
mvn exec:java -Dexec.mainClass=jp.riken.neurodata.tools.BioFormatsImageInfo -Dexec.args="'[path to image file]'"
```
### make jar package
```shell
mvn package
```
### run by jar
```shell
java -jar target\bioformats-imageinfo-1.0.0.jar [path to image file]
```
### run by class
```java
import java.util.LinkedHashMap;
import java.util.Map;
import jp.riken.neurodata.tools.BioFormatsImageInfo;
import jp.riken.neurodata.tools.BioFormatsException;
String path = "[path to image file]";
String format = "";
Map<String, Object> metadata = new LinkedHashMap<String, Object>();
try {
format = BioFormatsImageInfo.readMetadata(path, metadata));
} catch (BioFormatsImageException e) {
// error occured
e.printStackTrace();
}
```