All Downloads are FREE. Search and download functionalities are using the official Maven repository.

boofcv.gui.feature.VisualizeFeatures Maven / Gradle / Ivy

/*
 * Copyright (c) 2021, Peter Abeles. All Rights Reserved.
 *
 * This file is part of BoofCV (http://boofcv.org).
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package boofcv.gui.feature;

import boofcv.struct.feature.ScalePoint;
import georegression.struct.point.Point2D_I32;

import java.awt.*;
import java.awt.geom.Ellipse2D;
import java.awt.geom.Line2D;

/**
 * Functions for visualizing image features.
 *
 * @author Peter Abeles
 */
public class VisualizeFeatures {

	/**
	 * Converts a track ID into a RGB color. THis is designed so that tracks with similar IDs will be visually
	 * distinctive
	 */
	public static int trackIdToRgb( long featureId ) {
		int red = (int)(2.5*((50 + featureId)%100));
		int green = (int)((255.0/150.0)*((100 + featureId)%150));
		int blue = (int)(featureId%255);

		return (0xFF << 24) | ((red & 0xFF) << 16) | ((green & 0xFF) << 8) | (blue & 0xFF);
	}

	public static void drawPoints( Graphics2D g2,
								   Color color,
								   java.util.List points,
								   int radius ) {
		g2.setStroke(new BasicStroke(2));

		int ro = radius + 1;
		int wo = ro*2 + 1;
		int w = radius*2 + 1;
		for (Point2D_I32 p : points) {
			g2.setColor(color);
			g2.fillOval(p.x - radius, p.y - radius, w, w);
			g2.setColor(Color.BLACK);
			g2.drawOval(p.x - ro, p.y - ro, wo, wo);
		}
	}

	public static void drawPoint( Graphics2D g2, int x, int y, Color color ) {
		drawPoint(g2, x, y, 5, color);
	}

	public static void drawPoint( Graphics2D g2, int x, int y, int r, Color color ) {
		drawPoint(g2, x, y, r, color, true);
	}

	public static void drawPoint( Graphics2D g2, int x, int y, int r, Color color, boolean hasBorder ) {
		int w = r*2 + 1;

		if (hasBorder) {
			int r2 = r + 2;
			int w2 = r2*2 + 1;

			g2.setColor(Color.BLACK);
			g2.fillOval(x - r2, y - r2, w2, w2);
		}

		g2.setColor(color);
		g2.fillOval(x - r, y - r, w, w);
	}

	public static void drawPoint( Graphics2D g2, double x, double y, double r,
								  Color color, boolean hasBorder ) {
		drawPoint(g2, x, y, r, color, hasBorder, new Ellipse2D.Double());
	}

	public static void drawPoint( Graphics2D g2, double x, double y, double r,
								  Color colorInside, Color colorBorder ) {
		drawPoint(g2, x, y, r, colorInside, colorBorder, new Ellipse2D.Double());
	}

	public static void drawPoint( Graphics2D g2, double x, double y, double r,
								  Color color, boolean hasBorder, Ellipse2D.Double c ) {
		double w = r*2;

		if (hasBorder) {
			double r2 = r + 2;
			double w2 = r2*2;

			g2.setColor(Color.BLACK);
			c.setFrame(x - r2, y - r2, w2, w2);
			g2.fill(c);
		}

		g2.setColor(color);
		c.setFrame(x - r, y - r, w, w);
		g2.fill(c);
	}

	public static void drawPoint( Graphics2D g2, double x, double y, double r,
								  Color colorInside, Color colorBorder, Ellipse2D.Double c ) {
		double w = r*2;

		double r2 = r + 2;
		double w2 = r2*2;

		g2.setColor(colorBorder);
		c.setFrame(x - r2, y - r2, w2, w2);
		g2.fill(c);

		g2.setColor(colorInside);
		c.setFrame(x - r, y - r, w, w);
		g2.fill(c);
	}

	public static void drawCross( Graphics2D g2, int x, int y, int r ) {
		g2.drawLine(x - r, y, x + r, y);
		g2.drawLine(x, y - r, x, y + r);
	}

	public static void drawCross( Graphics2D g2, double x, double y, double r ) {
		Line2D.Double l = new Line2D.Double();
		l.setLine(x - r, y, x + r, y);
		g2.draw(l);
		l.setLine(x, y - r, x, y + r);
		g2.draw(l);
	}

	public static void drawScalePoints( Graphics2D g2, java.util.List points,
										double scaleToRadius ) {

		g2.setStroke(new BasicStroke(3));

		for (ScalePoint p : points) {
			if (p.white) {
				g2.setColor(Color.BLUE);
			} else {
				g2.setColor(Color.RED);
			}
			int r = (int)(p.scale*scaleToRadius + 0.5);
			int w = r*2 + 1;
			g2.drawOval((int)p.pixel.x - r, (int)p.pixel.y - r, w, w);
		}
	}

	public static void drawCircle( Graphics2D g2, double x, double y, double r ) {
		Ellipse2D.Double c = new Ellipse2D.Double();
		c.setFrame(x - r, y - r, 2*r, 2*r);
		g2.draw(c);
	}

	public static void drawCircle( Graphics2D g2, double x, double y, double r, Ellipse2D.Double c ) {
		c.setFrame(x - r, y - r, 2*r, 2*r);
		g2.draw(c);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy