คุณสามารถใส่วงรีทับรูปร่างได้โดยใช้ fitEllipse() วิธีการของ org.opencv.imgproc.Imgproc ระดับ. เมธอดนี้ยอมรับอ็อบเจ็กต์ของคลาส MatOfPoint2f คำนวณวงรีที่จะพอดีกับชุดของจุดที่กำหนดและส่งกลับออบเจกต์ RotatedRect
คุณสามารถวาดวงรีรอบๆ วัตถุที่เป็นไปได้ในรูปภาพได้ ในการทำเช่นนั้น
-
อ่านรูปภาพโดยใช้ imread() เมธอดของคลาส Imgproc
-
แปลงเป็นภาพระดับสีเทาโดยใช้ cvtColor() เมธอดของคลาส Imgproc
-
แปลงภาพสีเทาเป็นไบนารีโดยใช้ threshold() เมธอดของคลาส Imgproc
-
ค้นหาเส้นขอบในภาพโดยใช้ findContours() เมธอดของคลาส Imgproc
-
ตอนนี้ รับ RotatedRec ออบเจ็กต์สำหรับรูปทรงที่เป็นไปได้โดยข้ามค่ารูปร่างแต่ละค่าเป็น MatOfPoint2f ไปยัง fitEllipse() วิธีการ
-
สุดท้าย วาดวงรีรอบรูปร่างที่เป็นไปได้โดยใช้ ellipse() วิธีการ
หมายเหตุ − เพื่อให้พอดีกับวงรี วัตถุควรมีอย่างน้อยห้าจุด
ตัวอย่าง
import java.util.ArrayList;
import java.util.List;
import org.opencv.core.Core;
import org.opencv.core.Mat;
import org.opencv.core.MatOfPoint;
import org.opencv.core.MatOfPoint2f;
import org.opencv.core.RotatedRect;
import org.opencv.core.Scalar;
import org.opencv.highgui.HighGui;
import org.opencv.imgcodecs.Imgcodecs;
import org.opencv.imgproc.Imgproc;
public class FitEllipseExample {
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\\javafx_graphical.jpg";
Mat src = Imgcodecs.imread(file);
//Converting the source image to binary
Mat gray = new Mat(src.rows(), src.cols(), src.type());
Imgproc.cvtColor(src, gray, Imgproc.COLOR_BGR2GRAY);
Mat binary = new Mat(src.rows(), src.cols(), src.type(), new Scalar(0));
Imgproc.threshold(gray, binary, 100, 255, Imgproc.THRESH_BINARY_INV);
//Finding Contours
List<MatOfPoint> contours = new ArrayList<>();
Mat hierarchey = new Mat();
Imgproc.findContours(binary, contours, hierarchey, Imgproc.RETR_TREE,
Imgproc.CHAIN_APPROX_SIMPLE);
//Empty rectangle
RotatedRect[] rec = new RotatedRect[contours.size()];
for (int i = 0; i < contours.size(); i++) {
rec[i] = new RotatedRect();
if (contours.get(i).rows() > 5) {
rec[i] = Imgproc.fitEllipse(new MatOfPoint2f(contours.get(i).toArray()));
}
Scalar color_elli = new Scalar(190, 0, 0);
Imgproc.ellipse(src, rec[i], color_elli, 5);
}
HighGui.imshow("Contours operation", src);
HighGui.waitKey();
}
}
ป้อนรูปภาพ
ผลลัพธ์