Maison  >  Article  >  Java  >  Comment ajouter du texte à une image à l'aide de la bibliothèque Java OpenCV ?

Comment ajouter du texte à une image à l'aide de la bibliothèque Java OpenCV ?

WBOY
WBOYavant
2023-09-15 20:21:05925parcourir

Vous pouvez ajouter du texte à une image en utilisant la méthode putText() de la classe org.opencv.imgproc.Imgproc. Cette méthode restitue le texte spécifié dans l'image donnée. Il accepte -

  • Un objet pad vide utilisé pour stocker l'image source.

  • Un objet chaîne pour spécifier le texte requis.

  • Objet Point spécifiant la position du texte.

  • Constante entière spécifiant la police du texte.

  • Le facteur d'échelle multiplié par la taille de base spécifique à la police.

  • Un texte d'objet scalaire spécifiant la couleur.

  • Spécifiez la valeur entière de la couleur du texte

Exemple

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 AddingText {
   public static void main(String args[]) throws Exception {
      //Loading the OpenCV core library
      System.loadLibrary( Core.NATIVE_LIBRARY_NAME );
      //Reading the contents of the image
      String file ="D:\Images\shapes.jpg";
      Mat src = Imgcodecs.imread(file);
      //Preparing the arguments
      String text = "JavaFX 2D shapes";
      Point position = new Point(170, 280);
      Scalar color = new Scalar(0, 0, 255);
      int font = Imgproc.FONT_HERSHEY_SIMPLEX;
      int scale = 1;
      int thickness = 3;
      //Adding text to the image
      Imgproc.putText(src, text, position, font, scale, color, thickness);
      //Displaying the resultant Image
      HighGui.imshow("Contours operation", src);
      HighGui.waitKey();
   }
}

Image d'entrée

如何使用Java OpenCV库向图像添加文本?

Sortie

如何使用Java OpenCV库向图像添加文本?

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!

Déclaration:
Cet article est reproduit dans:. en cas de violation, veuillez contacter admin@php.cn Supprimer