Contours เป็นเพียงเส้นเชื่อมจุดทั้งหมดตามแนวขอบของรูปร่างนั้น ๆ การใช้สิ่งนี้คุณสามารถ -
-
หารูปร่างของวัตถุ
-
คำนวณพื้นที่ของวัตถุ
-
ตรวจจับวัตถุ
-
รู้จักวัตถุ
คุณสามารถค้นหารูปทรงของรูปทรงต่างๆ วัตถุในภาพได้โดยใช้ findContours() กระบวนการ. ในทำนองเดียวกันคุณสามารถวาดได้
คุณสามารถวาดเส้นขอบที่พบของรูปภาพได้โดยใช้ drawContours() วิธี วิธีการนี้ยอมรับพารามิเตอร์ต่อไปนี้ -
-
วัตถุ Mat ว่างสำหรับเก็บภาพผลลัพธ์
-
พบวัตถุรายการที่มีเส้นขอบ
-
ค่าจำนวนเต็มที่ระบุเส้นชั้นความสูงที่จะวาด (ค่า -ve เพื่อวาดทั้งหมด)
-
วัตถุสเกลาร์เพื่อระบุสีของเส้นขอบ
-
ค่าจำนวนเต็มเพื่อระบุความหนาของรูปร่าง
ตัวอย่าง
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.Point; import org.opencv.core.Scalar; import org.opencv.highgui.HighGui; import org.opencv.imgcodecs.Imgcodecs; import org.opencv.imgproc.Imgproc; public class DrawingContours { public static void main(String args[]) throws Exception { //Loading the OpenCV core library System.loadLibrary( Core.NATIVE_LIBRARY_NAME ); String file ="D:\\Images\\shapes.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); //Drawing the Contours Scalar color = new Scalar(0, 0, 255); Imgproc.drawContours(src, contours, -1, color, 2, Imgproc.LINE_8, hierarchey, 2, new Point() ) ; HighGui.imshow("Drawing Contours", src); HighGui.waitKey(); } }
ใส่รูปภาพ
ผลลัพธ์
ในการดำเนินการ โปรแกรมข้างต้นจะสร้างหน้าต่างต่อไปนี้ -