Le package
org.opencv.imgproc
de la bibliothèque Java OpenCV contient une classe appelée Imgproc. Cette classe fournit une méthode appelée circle(), qui peut être utilisée pour dessiner un Dessinez des cercles sur l'image. La méthode fournit les paramètres suivants :
Objet Mat représentant l'image du cercle à dessiner.
représente l'objet Point au centre du cercle.
Une variable entière représentant le rayon du cercle.
Un objet scalaire représentant la couleur du cercle (BGR).
Un entier représentant l'épaisseur du cercle (la valeur par défaut est 1).
Si le paramètre linetype est défini sur Imgproc.FILLED, cette méthode générera/dessinera un cercle rempli.
import org.opencv.core.Core; import org.opencv.core.Mat; import org.opencv.core.Point; import org.opencv.core.Scalar; import org.opencv.highgui.HighGui; import org.opencv.imgcodecs.Imgcodecs; import org.opencv.imgproc.Imgproc; public class DrawingFilledCircle { public static void main(String args[]) { //Loading the OpenCV core library System.loadLibrary( Core.NATIVE_LIBRARY_NAME ); //Loading the OpenCV core library System.loadLibrary( Core.NATIVE_LIBRARY_NAME ); //Reading the source image in to a Mat object Mat src = Imgcodecs.imread("D:\images\blank.jpg"); //Drawing a Circle Point center = new Point(300, 200); int radius =100; Scalar color = new Scalar(64, 64, 64); int thickness = Imgproc.FILLED; Imgproc.circle (src, center, radius, color, thickness); //Saving and displaying the image Imgcodecs.imwrite("arrowed_line.jpg", src); HighGui.imshow("Drawing a circle", src); HighGui.waitKey(); } }
Lors de l'exécution du programme ci-dessus, la fenêtre suivante sera générée −
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!