相机传感器

相机的传感器大小通常用英寸(1英寸=2.54厘米)来表示。例如:全画幅相机的传感器大小为:36mm*24mm,称为 35mm全画幅。

几分之一英寸

所谓的 1/2.7,1/2.5等等,里面的分子1是一个标准,分母越大,传感器越小。所以到底2/3英寸有多大呢?

所以衡量必须有一个标准,这个标准是沿用最早CCD应用在摄像机上的标准,指长12.8mm*9.6mm的面积,其对焦线为16mm,所以1指的是对角线为16mm。而长宽比是4:3

例:1/1.8英寸的ccd(12.8/1.8)*(9.6/1.8)=7.11*5.33mm

action3的传感器是1/1.7英寸,(12.8/1.7)*(9.6/1.7)=7.53*5.6mm

苹果15的传感器是1/1.3英寸...... 

尼康D3200的传感器是 23.2*15.4mm

### 工业相机传感器尺寸标准及常见大小 #### 传感器尺寸定义 工业相机中的传感器尺寸通常指的是感光元件的有效成像区域的物理尺寸。这种尺寸可以通过多种方式来描述,其中一种常见的方法是以英寸为单位表示对角线长度[^2]。 #### 尺寸计算关系 对于给定的传感器,其长边和短边的实际毫米数值可通过以下公式得出: - **Sensor 长边 (mm)** = Sensor 长边像素 × 像元大小 ÷ 1000 - **Sensor 短边 (mm)** = Sensor 短边像素 × 像元大小 ÷ 1000 由此可以进一步推导出整个传感器的对角线长度,即所谓的靶面尺寸。 #### 不同规格举例说明 不同的应用场合可能采用不同类型的标记体系去表达这些尺寸参数。例如,在某些情况下会看到类似于 "1/3 英寸" 或者 "2/3 英寸" 这样的标注,这实际上是指该设备所使用的图像传感器的大致面积范围而不是精确测量值。而其他时候,则可能会直接给出具体的宽度和高度数据[^1]。 #### 常见传感器尺寸列表 以下是几种较为典型的工业级 CCD 和 CMOS 图像传感器尺寸及其对应的近似实际尺寸: | 标准 | 对角线 (inch) | 宽度 (mm) | 高度 (mm) | | --- | -------------- | --------- | -------- | | 1/4 inch | ~4.8 mm | 3.2 | 2.4 | | 1/3 inch | ~6.4 mm | 4.8 | 3.6 | | 1/2 inch | ~8.0 mm | 6.4 | 4.8 | | 1/1.8 inch | ~9.7 mm | 7.2 | 5.3 | | 2/3 inch | ~11.0 mm | 8.8 | 6.6 | 请注意上述表格仅提供了一个大概的概念,并不代表所有制造商都会严格遵循此表内的具体数值;实际情况中还存在许多变体以及定制化的产品选项。 ```python # Python code to calculate sensor dimensions based on pixel size and resolution. def get_sensor_dimensions(pixel_size_um, width_pixels, height_pixels): """ Calculate the physical dimensions of a camera's image sensor. Args: pixel_size_um (float): Size of one pixel in micrometers. width_pixels (int): Number of pixels along the horizontal axis. height_pixels (int): Number of pixels along the vertical axis. Returns: tuple: A pair containing the calculated width and height in millimeters. """ width_mm = (width_pixels * pixel_size_um / 1000) height_mm = (height_pixels * pixel_size_um / 1000) return round(width_mm, 2), round(height_mm, 2) # Example usage with hypothetical values pixel_size_example = 3.75 # um per pixel as an example value resolution_width = 1920 # Horizontal number of pixels resolution_height = 1080 # Vertical number of pixels sensor_dims = get_sensor_dimensions(pixel_size_example, resolution_width, resolution_height) print(f"The estimated sensor dimension is {sensor_dims[0]}mm wide by {sensor_dims[1]}mm tall.") ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值