Skip to content

Support phaseone imx100 camera #77

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion imgparse/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Defines package version. Parsed by setup.py and imported by __init__.py."""

__version__ = "1.18.1"
__version__ = "1.19.0"
7 changes: 6 additions & 1 deletion imgparse/pixel_pitches.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Lookup tables for DJI, Sony, and Hasselblad pixel pitches.
Lookup tables for DJI, Sony, Hasselblad, and Phase One pixel pitches.

None of these camera types store the pixel pitch in xmp or exif tags, so they need to be manually coded and accessed.

@@ -40,8 +40,13 @@
"ILCE-7RM4A": 3.76e-06, # Sony A7R IV (60.2MP)
}

PHASE_ONE_PITCH = {
"iXM-100": 3.76e-06, # iXM-100 (120MP)
}

PIXEL_PITCHES = {
"DJI": DJI_PIXEL_PITCH,
"Hasselblad": HASSELBLAD_PIXEL_PITCH,
"SONY": SONY_PIXEL_PITCH,
"PhaseOne": PHASE_ONE_PITCH,
}
Loading
Loading