我们买的是这一款。是从麓邦买的,它实际上Thorlabs同款型号的高仿。
麓邦上面给的图片不对,没有第4组外侧的部分。
Thorlabs 给的图是正确的。
由于,thorlabs 给的图,第6组开始就看不清了。所以,这里放出小细节的图。
如下图,比较大的数字(下图圈出来的)表示是组号。旁边比较小的数字是组内序号
麓邦该产品页-技术说明,给出来的分辨率数据如下表
偶数组.2
偶数组.6
偶数组.1
奇数组
业界内表示分辨率,采用的是每毫米可以识别的线对数。
8.9797 lp/mm
。lp 就是 line pair。这个数据说明,1mm范围内,有8.9797个线对啥是线对?
步骤
xxx_3.2
。在明美显微镜,20x物镜下,得到的数据如下
图片名称 | 线对组宽度(pixels) | 该线对分辨率(lp/mm) |
---|---|---|
明美x20_3.2 | 1829 | 8.9797 |
明美x20_3.3 | 1629 | 10.0794 |
首先,明美x20_3.2
同理,明美x20_3.3
可以看出,两次计算结果相差不大。平均值为0.153 um
用于计算像素物理尺寸的python脚本
""" calculate the pixel size (the physical distance that each pixel represents) the Resolution Test Targets: https://www.lbtek.com/product/417.html """
def get_pixel_size(pixel_num, resolution):
""" calculate the pixel size (the physical distance that each pixel represents) :param pixel_num: the line pair set width on the image (pixel number) :param resolution: the resolution of the line pair set :return: the pixel size (the physical distance that each pixel represents) """
line_pairs = 2.5 # the line pairs number of the line pair set
result = (1 / resolution) * line_pairs / pixel_num * 1000
return result
if __name__ == '__main__':
pixel_size = get_pixel_size(pixel_num=1829, resolution=8.8797)
print("Each pixel represent %.3f um" % pixel_size)