Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
kapoorlab committed May 27, 2024
1 parent fbd125b commit 8fc2ab1
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 2 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<img src="images/mtrack.png" alt="Logo1" width="150"/>
<img src="images/kapoorlablogo.png" alt="Logo2" width="150"/>

This product is a testament to our expertise at KapoorLabs, where we specialize in creating cutting-edge solutions. We offer bespoke pipeline development services, transforming your developmental biology questions into publishable figures with our advanced computer vision and AI tools. Leverage our expertise and resources to achieve end-to-end solutions that make your research stand out.

**Note:** The tools and pipelines showcased here represent only a fraction of what we can achieve. For tailored and comprehensive solutions beyond what was done in the referenced publication, engage with us directly. Our team is ready to provide the expertise and custom development you need to take your research to the next level. Visit us at [KapoorLabs](https://www.kapoorlabs.org/).



[![Build Status](https://github.com/trackmate-sc/TrackMate-Skeleton/actions/workflows/build.yml/badge.svg)](https://github.com/trackmate-sc/TrackMate-Skeleton/actions/workflows/build.yml)

# TrackMate-Skeleton
Expand Down
Binary file added images/kapoorlablogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/mtrack.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/mtrack_plugin_look.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ public abstract class BtrackDetectorBaseConfigurationPanel extends Configuration

private static final long serialVersionUID = 1L;

protected static final ImageIcon ICON = new ImageIcon( getResource( "images/btracklogo.png" ) );
protected static final ImageIcon ICON = createScaledIcon("images/mtrack.png", 100, 100);


protected final Settings settings;

protected final Model model;



public BtrackDetectorBaseConfigurationPanel( final Settings settings, final Model model )
{
this.settings = settings;
Expand All @@ -58,3 +58,19 @@ protected static URL getResource( final String name )
}

}



public static ImageIcon createScaledIcon(String path, int width, int height) {
// Load the original ImageIcon
ImageIcon originalIcon = new ImageIcon(Icons.class.getResource(path));

// Get the Image from the ImageIcon
Image originalImage = originalIcon.getImage();

// Scale the Image to the desired size
Image scaledImage = originalImage.getScaledInstance(width, height, Image.SCALE_SMOOTH);

// Create a new ImageIcon from the scaled Image
return new ImageIcon(scaledImage);
}
Binary file added src/main/resources/images/mtrack.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 8fc2ab1

Please sign in to comment.