Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/biologytools/imagej.net
ImageJ Control using C# and IKVM.
https://github.com/biologytools/imagej.net
imagej
Last synced: about 1 month ago
JSON representation
ImageJ Control using C# and IKVM.
- Host: GitHub
- URL: https://github.com/biologytools/imagej.net
- Owner: BiologyTools
- License: gpl-3.0
- Created: 2024-06-24T13:05:50.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-27T07:43:18.000Z (5 months ago)
- Last Synced: 2024-07-27T08:46:03.842Z (5 months ago)
- Topics: imagej
- Homepage:
- Size: 3.65 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![NuGet version (ImageJ.NET)](https://img.shields.io/nuget/v/ImageJ.NET.svg)](https://www.nuget.org/packages/ImageJ.NET/154.0.0)
[![NuGet version (ImageJ.NET)](https://img.shields.io/nuget/dt/ImageJ.NET?color=g)](https://www.nuget.org/packages/ImageJ.NET/154.0.0)
# ImageJ.NET
Controlling ImageJ using C# and IKVM 8.9.1.
```
ij.ImageJ ijm = new ij.ImageJ();
ImagePlus image = new ImagePlus("C:/test.jpeg");
// Process the image
image.getProcessor().invert();
// Save the processed image
string outputPath = "C:/ImageJ/test.jpeg"; // Replace with your output path
ij.IJ.save(image, outputPath);
```