Metadata-Version: 2.4
Name: pycvcam
Version: 1.4.2
Summary: Python Computer Vision Cameras Operations and Models
Author-email: Artezaru <artezaru.github@proton.me>
License: Copyright 2025 Artezaru
        
        Licensed under the Apache License, Version 2.0 (the "License");
        you may not use this file except in compliance with the License.
        You may obtain a copy of the License at
        
            http://www.apache.org/licenses/LICENSE-2.0
        
        Unless required by applicable law or agreed to in writing, software
        distributed under the License is distributed on an "AS IS" BASIS,
        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        See the License for the specific language governing permissions and
        limitations under the License.
Project-URL: Homepage, https://github.com/Artezaru/pycvcam
Project-URL: Documentation, https://Artezaru.github.io/pycvcam
Project-URL: Source, https://github.com/Artezaru/pycvcam
Project-URL: Tracker, https://github.com/Artezaru/pycvcam/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy>=1.26
Requires-Dist: opencv-python-headless>=4.9
Requires-Dist: scipy>=1.12
Requires-Dist: pyzernike-polynomials>=2.0.5
Requires-Dist: py3dframe>=0.2.5
Provides-Extra: dev
Requires-Dist: sphinx; extra == "dev"
Requires-Dist: pydata-sphinx-theme; extra == "dev"
Requires-Dist: numpydoc; extra == "dev"
Requires-Dist: pytest; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: bumpver; extra == "dev"
Requires-Dist: twine; extra == "dev"
Requires-Dist: wheel; extra == "dev"
Requires-Dist: build; extra == "dev"
Requires-Dist: setuptools; extra == "dev"
Requires-Dist: setuptools-scm; extra == "dev"
Dynamic: license-file

# pycvcam

## Description

Python Computer Vision Cameras transformations and models.

A computer vision camera is modeled by three main components:

1. **Extrinsic**: The transformation from the world coordinate system to the normalized camera coordinate system (`world_points` to `normalized_points`)
2. **Distortion**: The transformation from the normalized camera coordinate system to the distorted camera coordinate system (`normalized_points` to `distorted_points`)
3. **Intrinsic**: The transformation from the distorted camera coordinate system to the image coordinate system (`distorted_points` to `image_points`)

As described in the figure below, the package `pycvcam` uses the following notation:

- `world_points`: The 3-D points **X_w** (`(..., 3)`) expressed in the world coordinate system *(Ex, Ey, Ez)*.
- `normalized_points`: The 2-D points **x_n** (`(..., 2)`) expressed in the normalized camera coordinate system *(I, J)* with a unit distance along the optical axis *(K)*.
- `distorted_points`: The distorted 2-D points **x_d** (`(..., 2)`) expressed in the normalized camera coordinate system *(I, J)* with a unit distance along the optical axis *(K)*.
- `image_points`: The 2-D points **x_i** (`(..., 2)`) expressed in the image coordinate system *(ex, ey)* in the sensor plane.
- `pixel_points`: The 2-D points **x_p** (`(..., 2)`) expressed in the pixel coordinate system *(u, v)* in the matrix of pixels.


![Definition of quantities in pycvcam](https://raw.githubusercontent.com/Artezaru/pycvcam/master/pycvcam/resources/definition.png)

To convert the `image_points` to the `pixel_points`, a simple switch of coordinate system can be performed.

The package provides several models and extrinsic, distortion, and intrinsic transformations.

The functions `project_points`, `compute_rays`, ... can be used to easily process transformations from the 3D world frame of reference to the image plane.

## Examples

Create a simple example to project 3D points to 2D image points using the intrinsic and extrinsic parameters of the camera.

```python
import numpy
from pycvcam import project_points, Cv2Distortion, Cv2Extrinsic, Cv2Intrinsic

# Define the 3D points in the world coordinate system
world_points = numpy.array([[0.0, 0.0, 5.0],
                            [0.1, -0.1, 5.0],
                            [-0.1, 0.2, 5.0],
                            [0.2, 0.1, 5.0],
                            [-0.2, -0.2, 5.0]])  # shape (5, 3)

# Define the rotation vector and translation vector
rvec = numpy.array([0.01, 0.02, 0.03])  # small rotation
tvec = numpy.array([0.1, -0.1, 0.2])    # small translation
extrinsic = Cv2Extrinsic.from_rt(rvec, tvec)

# Define the intrinsic camera matrix
K = numpy.array([[1000.0, 0.0, 320.0],
                 [0.0, 1000.0, 240.0],
                 [0.0, 0.0, 1.0]])

intrinsic = Cv2Intrinsic.from_matrix(K)

# Define the distortion model (optional)
distortion = Cv2Distortion(parameters=[0.1, 0.2, 0.3, 0.4, 0.5])

# Project the 3D points to 2D image points
result = project_points(world_points, intrinsic=intrinsic, distortion=distortion, extrinsic=extrinsic)
print("Projected image points:")
print(result.image_points)  # shape (5, 2)
```

You can also compute the Jacobians of the image points with respect to the input 3D world points and the projection parameters by setting the **dx** and **dp** parameters to True.

```python
# Project the 3D points to 2D image points with Jacobians
result = project_points(world_points, intrinsic=intrinsic, distortion=distortion, extrinsic=extrinsic, dx=True, dp=True)

print("Jacobian with respect to 3D points:")
print(result.jacobian_dx)  # shape (5, 2, 3)

print("Jacobian with respect to projection parameters:")
print(result.jacobian_dp)  # shape (5, 2, Nparams)

print("Jacobian with respect to extrinsic parameters:")
print(result.jacobian_dextrinsic)  # shape (5, 2, Nextrinsic)

print("Jacobian with respect to distortion parameters:")
print(result.jacobian_ddistortion)  # shape (5, 2, Ndistortion)

print("Jacobian with respect to intrinsic parameters:")
print(result.jacobian_dintrinsic)  # shape (5, 2, Nintrinsic)
```

## Authors

- Artezaru <artezaru.github@proton.me>

- **Git Plateform**: https://github.com/Artezaru/pycvcam.git
- **Online Documentation**: https://Artezaru.github.io/pycvcam

## Installation

Install with pip

```
pip install pycvcam
```

```
pip install git+https://github.com/Artezaru/pycvcam.git
```

Clone with git

```
git clone https://github.com/Artezaru/pycvcam.git
```

## License

Copyright 2025 Artezaru

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
