Skip to content
Merged
Show file tree
Hide file tree
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: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,3 @@

This package provides an API to write and execute scripts in a running ZEISS INSPECT instance.
Please read the [ZEISS INSPECT API documentation](https://zeiss.github.io/IQS/) for details.

The [ZEISS INSPECT API wheel](https://pypi.org/project/zeiss-inspect-api/) is hosted on PyPI.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "zeiss_inspect_api"
version = "2025.3.0.420"
version = "2025.4.0.398"
authors = [
{ name="Carl Zeiss GOM Metrology GmbH", email="info.optical.metrology@zeiss.com" },
]
Expand Down
1 change: 0 additions & 1 deletion src/gom/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@

import gom.__api__
import gom.__config__
import gom.__state__
import gom.__test__
import gom.__tools__

Expand Down
2 changes: 1 addition & 1 deletion src/gom/api/imaging/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def compute_pixels_from_point(point_and_image_acquisitions:list[tuple[gom.Vec3d,
@version 1

This function is used to compute the location of a 3d point in a 2d image. This is a photogrammetric
operation which will return a precise result. The input parameter is a list of tupels where each tuple consists
operation which will return a precise result. The input parameter is a list of tuples where each tuple consists
of a 3d point and and acquisition object. The acquisition object is then used to compute the location of the
3d point in the referenced image. This might lead to multiple pixels as a result, so the return value is again
a list containing 0 to n entries of pixel matches.
Expand Down
4 changes: 2 additions & 2 deletions src/gom/api/introspection/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ def name(self) -> str:
'''
return self.__call_method__('name')

def descripion(self) -> str:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No idea where this came from. Cannot find it in the source code. So assuming that this has been corrected in the meantime in the repo and is now just more actual in the wheel.

def description(self) -> str:
'''
@brief Returns the optional function description
@version 1

@return Function description
'''
return self.__call_method__('descripion')
return self.__call_method__('description')

def signature(self) -> list[str]:
'''
Expand Down
2 changes: 1 addition & 1 deletion src/gom/api/project/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class ProgressInformation (gom.__api__.Object):
'''
@deprecated Please use gom.api.progress.ProgressBar instead
@brief Auxillary class allowing to set progress information
@brief Auxiliary class allowing to set progress information
This class is used to access the progress bar and progress message widgets of the application.
'''
Expand Down
4 changes: 2 additions & 2 deletions src/gom/api/settings/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
#
# @brief API for storing add-on related settings persistently
#
# This API allows reading/writing values into the application configuration permantly. The
# configuration is persistant and will survive application restarts. Also, it can be accessed
# This API allows reading/writing values into the application configuration permanently. The
# configuration is persistent and will survive application restarts. Also, it can be accessed
# via the applications preferences dialog.
#
# The configuration entries must be defined in the add-ons `metainfo.json` file. This configuration
Expand Down