Just a simple reference glossary for computer vision terms I use in my code
Abbreviation | Definition |
---|---|
cam |
camera |
cntr |
contour |
desc |
descriptor |
img |
image |
kf |
keyframe |
I hereby claim:
To claim this, I am signing this object:
A lightweight format for writing numbers using scientific notation.
I wrote this to make it easy to allow applications to accept values with units gracefully. Although many languages implement scientific notation, I never found it as ergonomic as just using SI prefixes. Would you rather a user input a unitless 1.024e+6
or 1_000KiB
?
A SiMin number has three parts: a value, prefix, and unit. Let's look at an example:
tokenize('-120mT') === [ '-120', 'm', 'T' ]