JeVois  1.20
JeVois Smart Embedded Machine Vision Toolkit
Share this page:
Coordinates.H File Reference
Include dependency graph for Coordinates.H:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

 jevois
 
 jevois::coords
 

Macros

#define JEVOIS_CAMERA_ASPECT   (16.0 / 9.0)
 Aspect ratio of the JeVois camera. More...
 

Functions

void jevois::coords::imgToStd (float &x, float &y, RawImage const &camimg, float const eps=0.1F)
 Transform coordinates in-place from camera to standardized, using a RawImage to establish image size. More...
 
void jevois::coords::imgToStd (float &x, float &y, unsigned int const width, unsigned int const height, float const eps=0.1F)
 Transform coordinates in-place from camera to standardized, using given image width and height. More...
 
void jevois::coords::imgToStdX (float &x, unsigned int const width, float const eps=0.1F)
 Transform X coordinate in-place from camera to standardized, using given image width and height. More...
 
void jevois::coords::imgToStdY (float &y, unsigned int const height, float const eps=0.1F)
 Transform Y coordinate in-place from camera to standardized, using given image width and height. More...
 
void jevois::coords::imgToStdSize (float &w, float &h, unsigned int const width, unsigned int const height, float const eps=0.1F)
 Transform size in-place from camera to standardized, using given image width and height. More...
 
void jevois::coords::stdToImg (float &x, float &y, RawImage const &camimg, float const eps=0.1F)
 Transform coordinates in-place from standardized to image, using a RawImage to establish image size. More...
 
void jevois::coords::stdToImg (float &x, float &y, unsigned int const width, unsigned int const height, float const eps=0.1F)
 Transform coordinates in-place from standardized to image, using a RawImage to establish image size. More...
 
void jevois::coords::stdToImgSize (float &x, float &y, unsigned int const width, unsigned int const height, float const eps=0.1F)
 Transform size in-place from standardized to image, using a RawImage to establish image size. More...