BioGTK 2.6.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package BioGTK --version 2.6.0
NuGet\Install-Package BioGTK -Version 2.6.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="BioGTK" Version="2.6.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BioGTK --version 2.6.0
#r "nuget: BioGTK, 2.6.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install BioGTK as a Cake Addin
#addin nuget:?package=BioGTK&version=2.6.0

// Install BioGTK as a Cake Tool
#tool nuget:?package=BioGTK&version=2.6.0

BioGTK

alt text

A .NET application & library for editing & annotating various microscopy image formats. Supports all bioformats supported images. Integrates with ImageJ, running ImageJ filters & macro functions.Check out the new wiki for library usage. or check out the documentation. Supports Windows, Linux and Mac. For Windows & Mac see installation instructions. For Discussion check out the new Discord Server. https://discord.gg/tdeyc6fgpv

NuGet version (BioGTK) NuGet version (BioGTK)

Features

  • C# scripting with sample tool-script and other sample scripts in "/Scripts/" folder. See samples

  • Supports running ImageJ macro commands on images open in Bio. Console to run ImageJ macro commands and Bio C# scripts.

  • Supports Pyramidal images with multiple resolutions. Like whole slide images.

  • Multiple view modes like Emission, and Filtered. ROI's shown for each channel can be configured in ROI Manager.

  • Supports drawing shapes & colors onto 16 bit & 48 bit images, unlike System.Drawing.Graphics.

  • Convenient viewing of image stacks with scroll wheel moving Z-plane and mouse side buttons scrolling C-planes.

  • Editing & saving ROI's in images to OME format image stacks.

  • Copy & Paste to quickly annotate images and name them easily by right click.

  • Select multiple points by holding down control key, and move them by holding down control key.

  • Exporting ROI's from each OME image in a folder of images to CSV.

  • Easy freeform annotation with magic select tool which selects based on blob detection.

  • Supports all Bioformats supported images including whole slide images.

Dependencies

Licenses

Scripting

  • Save scripts into "StartupPath/Scripts" with ".cs" ending.
  • Open script editor and recorder from menu.
  • Scripts saved in Scripts folder will be loaded into script runner.
  • Use Script recorder to record program function calls and script runner to turn recorder text into working scripts. (See sample scripts

Mac Installation

  • Install Mac package manager homebrew.
  • From brew install GTK3.
  • Download the BioGTK application for either OSX-x64 or OSX-Arm from releases.
  • Make the file executable by opening terminal in the extracted folder and running "chmod 755 BioGTKApp"

Windows Installation

  • Install package manager MSYS2. to install package GTK3. (Required for GTK Apps.)
  • Download the BioGTK Windows installer from releases.

Sample Tool Script

//css_reference BioGTK.dll; 
using System; 
using BioGTK;
using System.Threading;
using AForge;
public class Loader {

//Point ROI Tool Example
public string Load()
{
	int ind = 1;
	do
	{
		BioGTK.Scripting.State s = BioGTK.Scripting.GetState();
		if (s != null)
		{
			if (!s.processed)
			{
				if (s.type == BioGTK.Scripting.Event.Down && s.buts == 1)
				{
					ZCT cord = BioGTK.App.viewer.GetCoordinate();
					BioGTK.Scripting.LogLine(cord.ToString() + " Coordinate");
					BioGTK.ROI an = BioGTK.ROI.CreatePoint(cord, s.p.X, s.p.Y);
					BioGTK.ImageView.SelectedImage.Annotations.Add(an);
					BioGTK.Scripting.LogLine(cord.ToString() + " Coordinate");
					an.Text = "Point" + ind;
					ind++;
					BioGTK.Scripting.LogLine(s.ToString() + " Point");
					//ImageView.viewer.UpdateOverlay();
				}
				else
				if (s.type == BioGTK.Scripting.Event.Up)
				{
					BioGTK.Scripting.LogLine(s.ToString());
				}
				else
				if (s.type == BioGTK.Scripting.Event.Move)
				{
					BioGTK.Scripting.LogLine(s.ToString());
				}
				s.processed = true;
			}
		}
		if(BioGTK.Scripting.Exit("points.cs"))
		{	
			return "OK";
		}
	} while (true);
	return "OK";
}
}
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
5.1.0 36 4/29/2024
5.0.1 46 4/21/2024
5.0.0 44 4/17/2024
4.9.0 66 3/8/2024
4.8.1 49 3/6/2024
4.8.0 95 3/6/2024
4.7.1 86 2/27/2024
4.7.0 72 2/25/2024
4.6.0 93 2/19/2024
4.5.2 93 2/17/2024
4.5.1 91 2/15/2024
4.5.0 97 2/13/2024
4.4.0 94 2/10/2024
4.3.0 76 2/2/2024
4.2.0 133 1/14/2024
4.1.0 153 1/4/2024
4.0.0 119 12/26/2023
3.9.1 114 12/2/2023
3.9.0 97 12/1/2023
3.8.1 121 11/8/2023
3.8.0 94 11/2/2023
3.7.1 241 10/26/2023
3.7.0 258 10/22/2023
3.6.2 264 8/30/2023
3.6.1 268 8/22/2023
3.6.0 316 8/19/2023
3.5.3 239 8/17/2023
3.5.1 296 8/12/2023
3.5.0 418 8/10/2023
3.4.0 305 8/6/2023
3.3.3 370 8/4/2023
3.3.2 322 8/1/2023
3.3.1 343 7/6/2023
3.3.0 305 7/4/2023
3.2.0 336 6/29/2023
3.1.1 261 6/28/2023
3.0.0 248 6/20/2023
2.9.0 274 6/13/2023
2.8.0 239 5/15/2023
2.7.2 276 5/5/2023
2.7.1 289 4/29/2023
2.7.0 274 4/29/2023
2.6.2 431 4/3/2023
2.6.1 391 4/1/2023
2.6.0 394 3/12/2023
2.5.0 434 3/7/2023
2.4.1 370 3/4/2023
2.4.0 489 2/28/2023
2.3.0 457 2/27/2023
2.2.0 233 2/23/2023
2.1.1 211 2/17/2023
2.1.0 226 2/15/2023
1.2.0 270 1/31/2023
1.1.0 251 1/29/2023
1.0.0 255 1/29/2023

Added Slide overview for easier & quicker navigation.