Examples of blankImage()


Examples of jsky.image.gui.DivaGraphicsImageDisplay.blankImage()

            } catch (Exception e) {
                System.out.println("error: " + e.toString());
                System.exit(1);
            }
        } else {
            imageDisplay.blankImage(0, 0);
        }

        new MeasureBand(imageDisplay);

        frame.getContentPane().add(imageDisplay, BorderLayout.CENTER);
View Full Code Here

Examples of jsky.image.gui.GraphicsImageDisplay.blankImage()

        // If no image is being displayed, try to generate a blank WCS image
        GraphicsImageDisplay imageDisplay = (GraphicsImageDisplay) _coordinateConverter.getImageDisplay();
        if (imageDisplay.isClear()) {
            WorldCoordinates pos = table.getWCSCenter();
            if (pos != null) {
                imageDisplay.blankImage(pos.getRaDeg(), pos.getDecDeg());
            }
        }

        return _coordinateConverter.isWCS();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.