mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
|
Class to interface with an ImageStreamIO image in shared memory.
Use with Eigen::Map (aliased as mx::improc::eigenMap)
Once you have changed something via the Eigen::Map you want to notify others connected to the stream via
Definition at line 146 of file milkImage.hpp.
#include <improc/milkImage.hpp>
Public Types | |
typedef _dataT | dataT |
The data type. | |
Public Member Functions | |
milkImage () | |
Default c'tor. | |
milkImage (const std::string &imname) | |
Constructor which opens the specified image, which must already exist in shared memory. | |
milkImage (const std::string &imname, uint32_t sz0, uint32_t sz1) | |
Constructor which (re-)creates the specified image with the given size. | |
milkImage (const std::string &imname, const eigenImage< dataT > &im) | |
Constructor which (re-)creates the specified image and copies the provided image to it. | |
~milkImage () | |
D'tor. | |
void | open (const std::string &imname) |
Open and connect to an image, allocating the eigenMap. | |
void | create (const std::string &imname, uint32_t sz0, uint32_t sz1) |
Create (or re-create) and connect to an image, allocating the eigenMap. | |
void | create (const std::string &imname, const eigenImage< dataT > &im) |
uint32_t | rows () |
Get the width of the image. | |
uint32_t | cols () |
Get the height of the image. | |
uint32_t | size (unsigned n) |
Get the size of a dimension of the image. | |
bool | valid () |
Checks if the image is connected and is still the same format as when connected. | |
void | reopen () |
Reopens the image. | |
eigenMap< dataT > & | operator() () |
Get an eigenMap. | |
operator eigenMap< dataT > () | |
Conversion operator returns an eigenMap. | |
template<typename eigenT > | |
milkImage & | operator= (const eigenT &im) |
Copy data from an Eigen Array type to the shared memory stream. | |
void | setWrite (bool wrflag=true) |
Set the write flag. | |
void | post () |
Update the metadata and post all semaphores. | |
Protected Attributes | |
std::string | m_name |
The image name, from name.im.shm (the .im.shm should not be given). | |
IMAGE * | m_image { nullptr } |
Pointer to the ImageStreamIO IMAGE structure. | |
uint64_t | m_size_0 { 0 } |
The size[0] of the image when last opened. | |
uint64_t | m_size_1 { 0 } |
The size[1] of the image when last opened. | |
typedef _dataT mx::improc::milkImage< _dataT >::dataT |
The data type.
Definition at line 149 of file milkImage.hpp.
mx::improc::milkImage< dataT >::milkImage | ( | ) |
Default c'tor.
Definition at line 309 of file milkImage.hpp.
mx::improc::milkImage< dataT >::milkImage | ( | const std::string & | imname | ) |
Constructor which opens the specified image, which must already exist in shared memory.
[in] | imname | The image name, from name.im.shm (the .im.shm should not be given). |
Definition at line 314 of file milkImage.hpp.
mx::improc::milkImage< dataT >::milkImage | ( | const std::string & | imname, |
uint32_t | sz0, | ||
uint32_t | sz1 | ||
) |
Constructor which (re-)creates the specified image with the given size.
[in] | imname | The image name, from name.im.shm (the .im.shm should not be given). |
[in] | sz0 | the x size of the image |
[in] | sz1 | the y size of the image |
Definition at line 326 of file milkImage.hpp.
mx::improc::milkImage< dataT >::milkImage | ( | const std::string & | imname, |
const eigenImage< dataT > & | im | ||
) |
Constructor which (re-)creates the specified image and copies the provided image to it.
[in] | imname | The image name, from name.im.shm (the .im.shm should not be given). |
[in] | im | An existing eigenImage |
Definition at line 320 of file milkImage.hpp.
mx::improc::milkImage< dataT >::~milkImage | ( | ) |
D'tor.
Definition at line 332 of file milkImage.hpp.
uint32_t mx::improc::milkImage< dataT >::cols | ( | ) |
Get the height of the image.
Definition at line 496 of file milkImage.hpp.
void mx::improc::milkImage< dataT >::create | ( | const std::string & | imname, |
const eigenImage< dataT > & | im | ||
) |
Create and connect to an image using an existing eigenImage, allocating the eigenMap and copying the image to the shmim.
std::invalid_argument | if the image type_code does not match dataT. |
[in] | imname | The image name, for name.im.shm (the .im.shm should not be given). |
[in] | im | An existing eigenImage |
Definition at line 437 of file milkImage.hpp.
void mx::improc::milkImage< dataT >::create | ( | const std::string & | imname, |
uint32_t | sz0, | ||
uint32_t | sz1 | ||
) |
Create (or re-create) and connect to an image, allocating the eigenMap.
std::invalid_argument | if the image type_code does not match dataT. |
[in] | imname | The image name, for name.im.shm (the .im.shm should not be given). |
[in] | sz0 | the x size of the image |
[in] | sz1 | the y size of the image |
Definition at line 380 of file milkImage.hpp.
void mx::improc::milkImage< dataT >::open | ( | const std::string & | imname | ) |
Open and connect to an image, allocating the eigenMap.
std::invalid_argument | if the image type_code does not match dataT. |
[in] | imname | The image name, from name.im.shm (the .im.shm should not be given). |
Definition at line 338 of file milkImage.hpp.
mx::improc::milkImage< dataT >::operator eigenMap< dataT > | ( | ) |
Conversion operator returns an eigenMap.
Use this like
but with caution:
mx::err::mxException | if the image is not opened |
Definition at line 455 of file milkImage.hpp.
eigenMap< dataT > & mx::improc::milkImage< dataT >::operator() | ( | ) |
Get an eigenMap.
Use with caution:
mx::err::mxException | if the image is not opened |
Definition at line 444 of file milkImage.hpp.
milkImage & mx::improc::milkImage< _dataT >::operator= | ( | const eigenT & | im | ) |
Copy data from an Eigen Array type to the shared memory stream.
Sets the write flag, copies using the Eigen assigment to map, unsets the write flag, then posts.
mxException | on an error |
[in] | im | the eigen array to copy to the stream |
void mx::improc::milkImage< dataT >::post | ( | ) |
Update the metadata and post all semaphores.
mx::err::mxException | if the image is not opened |
Definition at line 570 of file milkImage.hpp.
void mx::improc::milkImage< dataT >::reopen | ( | ) |
Reopens the image.
Same as
Definition at line 461 of file milkImage.hpp.
uint32_t mx::improc::milkImage< dataT >::rows | ( | ) |
Get the width of the image.
Definition at line 490 of file milkImage.hpp.
void mx::improc::milkImage< dataT >::setWrite | ( | bool | wrflag = true | ) |
Set the write flag.
The write flag is set to indicate whether or not the the data is being changed. The write flag will be set to false by post().
mx::err::mxException | if the image is not opened |
[in] | wrflag | [optional] the desired value of the write flag. Default is true. |
Definition at line 559 of file milkImage.hpp.
uint32_t mx::improc::milkImage< dataT >::size | ( | unsigned | n | ) |
Get the size of a dimension of the image.
[in] | n | the dimension to get the size of |
Definition at line 502 of file milkImage.hpp.
bool mx::improc::milkImage< dataT >::valid | ( | ) |
Checks if the image is connected and is still the same format as when connected.
Checks on pointer value, size[], and data_type.
Definition at line 517 of file milkImage.hpp.
|
protected |
Pointer to the ImageStreamIO IMAGE structure.
Definition at line 154 of file milkImage.hpp.
|
protected |
The image name, from name.im.shm (the .im.shm should not be given).
Definition at line 152 of file milkImage.hpp.
|
protected |
The size[0] of the image when last opened.
Definition at line 160 of file milkImage.hpp.
|
protected |
The size[1] of the image when last opened.
Definition at line 162 of file milkImage.hpp.