Spaces:
Running
Running
File size: 343 Bytes
499e141 |
1 2 3 4 5 6 7 8 9 10 11 12 |
# -*- coding: UTF-8 -*-
'''=================================================
@Project -> File pram -> camera
@IDE PyCharm
@Author [email protected]
@Date 04/03/2024 11:27
=================================================='''
import collections
Camera = collections.namedtuple(
"Camera", ["id", "model", "width", "height", "params"])
|