Uses of Class
net.grelf.grip.BlobMeasList

Packages that use BlobMeasList
net.grelf.astro This package contains Java classes for astronomical applications. 
net.grelf.grip This package contains the Java classes which are specific to the image processing application GRIP.

GRIP is available as a free download from www.grelf.net - please always quote this URL in connection with GRIP.
Version: 12.4.3 
 

Uses of BlobMeasList in net.grelf.astro
 

Methods in net.grelf.astro with parameters of type BlobMeasList
 SkyPoint Star.measurePosition(ImFrame parentFrame, BlobMeasList measList)
          If this star has unknown position (RA/Dec), do astrometry using the known reference stars in the given MeasList.
 

Constructors in net.grelf.astro with parameters of type BlobMeasList
MagnitudeChart(StarChart chart, java.lang.String title, BlobMeasList measList, boolean accurate)
          Create a clone of the chart, draw into it markers and star ids for all the blobs used for estimating magnitude, and redisplay it.
MagnitudeGraph(ImFrame parent, java.lang.String title, BlobMeasList meases, MagnitudeBands bands, java.lang.String filePath, TimeInterval timeSpan)
          Any BlobMeas objects that have a star with an id but no magnitude will have magnitudes estimated by least squares fitting.
MagnitudeTable(ImFrame parent, java.lang.String title, BlobMeasList meases)
          Any BlobMeas objects that have an id will have their data tabulated.
 

Uses of BlobMeasList in net.grelf.grip
 

Methods in net.grelf.grip that return BlobMeasList
 BlobMeasList BlobMeasList.crop(java.awt.Point pt1, java.awt.Point pt2)
          Modify the list for its image being cropped to a rectangle formed by the 2 points as diagonal.
 BlobMeasList ImFrame.detectBlobs()
           
 BlobMeasList ImFrame.detectBlobs(boolean includeSinglePixelBlobs)
           
 BlobMeasList ImFrame.detectBlobs(boolean includeSinglePixelBlobs, boolean replot)
           
 BlobMeasList ImFrame.getBlobMeases()
          If this frame has a list of detected blob measurements return the list, otherwise return null.
static BlobMeasList BlobMeasList.loadFromXML(java.lang.String filePath)
           
 BlobMeasList ImFrame.replotBlobs()
           
 

Methods in net.grelf.grip with parameters of type BlobMeasList
static void HistogramBlobs.display(ImFrame imframe, BlobMeasList blobMeases)
          Pop up graphs of blob measurements from the given ImFrame.
static void BlobMeas.drawBoundaries(ImFrame imframe, BlobMeasList blobMeases)
          Draw blob boundaries from the given blob measurements into the GlassPane of the given ImFrame and redisplay the image.
9.11.29: Deprecated: use instead a non-static method of the same name in BlobMeasList.
static java.util.List<ConnectionList> Analyser.getSortedConnections(BlobMeasList meases, int nBrightest)
          From the first n of a list of measured blobs, in descending order of brightness, get a list of polar offsets between them, in ascending order of angle.
 boolean WarpingGrid.make(BlobMeasList detected)
          Analyse the blob measurements (the centre fields) to create the grid.
 void ImFrame.setBlobMeases(BlobMeasList meases)
          To enable hovering over detected blobs, give the frame a reference to the list of blob measurements.
 void LevelsMenu.setBlobMeases(BlobMeasList meases)
          To enable menu options for detected blobs, give the menu a reference to the list of blob measurements.
static void BlobMeas.showBrightestBlobs(ImFrame imframe, BlobMeasList blobMeases)
          Draw brightest blobs into the GlassPane of the given ImFrame and redisplay the image.
 

Constructors in net.grelf.grip with parameters of type BlobMeasList
BlobGraph(BlobMeasList meases, BlobGraph.GraphKind kind)
           
ColourGraph(BlobMeasList meases, ColourGraph.GraphKind kind)
           
HistogramBlobs(ImFrame imframe, BlobMeasList blobMeases)