java opencv 绘制Point中线
时间: 2023-06-28 17:05:18 浏览: 89
要在Java OpenCV中绘制两个点之间的中线,可以按照以下步骤进行操作:
1. 首先,使用OpenCV的 `line()` 函数绘制两个点之间的直线。这个函数需要传入三个参数:图像、起点坐标和终点坐标。
2. 然后,计算出这两个点的中心坐标。可以使用以下代码计算中心坐标:
```
int center_x = (start_x + end_x) / 2;
int center_y = (start_y + end_y) / 2;
```
3. 最后,使用 `line()` 函数再次将图像中心与终点坐标之间的直线绘制出来。这个函数需要传入三个参数:图像、中心坐标和终点坐标。
完整的代码示例:
```
import org.opencv.core.Core;
import org.opencv.core.Point;
import org.opencv.highgui.HighGui;
import org.opencv.imgcodecs.Imgcodecs;
import org.opencv.imgproc.Imgproc;
public class DrawLine {
public static void main(String[] args) {
// Load the OpenCV library
System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
// Load the image
String filename = "image.jpg";
Mat img = Imgcodecs.imread(filename);
// Define the start and end points
Point start = new Point(100, 100);
Point end = new Point(200, 200);
// Draw the line between the two points
Imgproc.line(img, start, end, new Scalar(0, 255, 0), 2);
// Calculate the center point
int center_x = (int)((start.x + end.x) / 2);
int center_y = (int)((start.y + end.y) / 2);
Point center = new Point(center_x, center_y);
// Draw the line between the center point and the end point
Imgproc.line(img, center, end, new Scalar(0, 0, 255), 2);
// Display the image
HighGui.imshow("Image", img);
HighGui.waitKey();
}
}
```
阅读全文