Scripting machine vision and astronomical cameras in Python

https://rkblog.dev/posts/python/scripting-machine-vision-and-astronomical-cameras-python/

Examples of how to use amateur astrophotography and machine vision USB cameras with Python (or IronPython sometimes).

17 points · 5 comments · view on lemmy.world

5 Comments

SatouKazuma@lemmy.world · 2 pts · 2y (4 replies)

I noticed all of this was in Python 2. Isn't that entire version deprecated?

riklaunim@programming.dev · 1 pts · 2y (3 replies)

It's not Python 2.

SatouKazuma@lemmy.world · 1 pts · 2y (2 replies)

Is it not? I noticed a lot of string formatting that looked straight out of 2.7

riklaunim@programming.dev · 2 pts · 2y (1 reply)

% string formatting is still valid and used in Python 3. It's not removed or deprecated for now.

SatouKazuma@lemmy.world · 1 pts · 2y

TIL