我正在使用覆盆子pi在3d扫描仪上工作,我将每个图像与其他具有差异的图像(激光线)进行比较
这是一个例子 image1:http://s18.postimg.org/z2kra0vy1/image.jpg
image2:http://s13.postimg.org/dqye3q6vr/image.jpg
结果图片:http://s18.postimg.org/rzhh85fw9/final.jpg
那么现在如何在不使用嵌套循环的情况下从python中的结果图像中提取激光线的坐标?
这是我用来获得差异的代码
from PIL import Image
from PIL import ImageChops
im1 = Image.open("11.jpg")
im2 = Image.open("22.jpg")
diff = ImageChops.difference(im2, im1)
diff.show()