Changeset 7821 for trunk/projects/slim-plugin/src/main/java/loci/slim
- Timestamp:
- 12/02/11 20:58:15 (8 years ago)
- Location:
- trunk/projects/slim-plugin/src/main/java/loci/slim
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/projects/slim-plugin/src/main/java/loci/slim/MyStackWindow.java
r7677 r7821 57 57 public MyStackWindow(ImagePlus imp) { 58 58 super(imp); 59 System.out.println("MyStackWindow " + imp.getTitle()); 59 60 m_height = imp.getHeight(); 60 61 if (null != sliceSelector) { -
trunk/projects/slim-plugin/src/main/java/loci/slim/SLIMProcessor.java
r7811 r7821 64 64 import loci.slim.binning.SLIMBinning; 65 65 import loci.slim.colorizer.DataColorizer; 66 import loci.slim.colorizer.DataColorizer2; 67 66 68 import loci.slim.ui.ExcitationPanel; 67 69 import loci.slim.ui.IStartStopListener; … … 1005 1007 if (m_visibleFit) { 1006 1008 // show colorized image 1007 DataColorizer dataColorizer = new DataColorizer(m_width, m_height, m_algorithm + " Fitted Lifetimes");1009 DataColorizer2 dataColorizer = new DataColorizer2(m_width, m_height, m_algorithm + " Fitted Lifetimes"); 1008 1010 1009 1011 ChunkyPixelEffectIterator pixelIterator = new ChunkyPixelEffectIterator(new ChunkyPixelTableImpl(), m_width, m_height); … … 1405 1407 * @param pixels parallel list of rectangles with which to draw the fitted pixel 1406 1408 */ 1407 void colorizePixels(DataColorizer dataColorizer, int channel, ICurveFitData data[], ChunkyPixel pixels[]) {1409 void colorizePixels(DataColorizer2 dataColorizer, int channel, ICurveFitData data[], ChunkyPixel pixels[]) { 1408 1410 1409 1411 // draw as you go; 'chunky' pixels get smaller as the overall fit progresses … … 1453 1455 } 1454 1456 1455 void colorizePixelsII(DataColorizer dataColorizer, int channel, double[] lifetime, ChunkyPixel pixels[]) {1457 void colorizePixelsII(DataColorizer2 dataColorizer, int channel, double[] lifetime, ChunkyPixel pixels[]) { 1456 1458 1457 1459 // draw as you go; 'chunky' pixels get smaller as the overall fit progresses
Note: See TracChangeset
for help on using the changeset viewer.