标签: emgucv
我在Emgu 3.4版本中使用过 Image.Sample(LineSegment2D)
像这样
var p1 = new Point(){X=0,y=0}; var p2 = new Point(){X=10,y=10}; var profile = image.Sample(new LineSegment2D() { P1 = p1, P2 = p2 });
我现在更新到4.0.1版,其中不存在示例。如何在4.0.1中采样一行?