org.opencv.imgproc.Imgproc 클래스의 drawMarker() 메서드를 사용하여 이미지에 마커를 그릴 수 있습니다. 이 메소드는 다음 매개변수를 허용합니다:
img − 입력 이미지를 나타내는 Mat 객체.
position − 마크의 위치를 지정하는 데 사용되는 Point 클래스의 객체입니다.
color − 마커의 색상을 지정하는 데 사용되는 Scalar 클래스의 객체입니다.
markerType − 마커 유형을 지정하는 데 사용되는 정수 상수입니다.
size − 마커의 크기를 지정하는 정수 값입니다.
thickness − 마크의 두께를 지정하는 정수 값.
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 DrawingMarkers { 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\elephant.jpg"; Mat src = Imgcodecs.imread(file); //Preparing color and position of the marker Scalar color = new Scalar(0, 0, 125); Point point = new Point(150, 260); //Drawing marker Imgproc.drawMarker(src, point, color, Imgproc.MARKER_SQUARE, 150, 8, Imgproc.LINE_8); HighGui.imshow("Drawing Markers", src); HighGui.waitKey(); } }
위 프로그램을 실행시키면 아래와 같은 창이 생성됩니다 -
위 내용은 Java OpenCV 라이브러리를 사용하여 이미지에 마커를 그리는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!