Skip to content

BiologyTools/ImageJ.NET

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NuGet version (ImageJ.NET) NuGet version (ImageJ.NET)

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);