27#ifndef improc_milkImage_hpp
28#define improc_milkImage_hpp
36#include <ImageStreamIO/ImageStreamIO.h>
38#include "../mxException.hpp"
46template <
typename typeT>
47struct ImageStructTypeCode;
50struct ImageStructTypeCode<uint8_t>
52 constexpr static int TypeCode = _DATATYPE_UINT8;
56struct ImageStructTypeCode<int8_t>
58 constexpr static int TypeCode = _DATATYPE_INT8;
62struct ImageStructTypeCode<char>
64 constexpr static int TypeCode = _DATATYPE_INT8;
68struct ImageStructTypeCode<uint16_t>
70 constexpr static int TypeCode = _DATATYPE_UINT16;
74struct ImageStructTypeCode<int16_t>
76 constexpr static int TypeCode = _DATATYPE_INT16;
80struct ImageStructTypeCode<uint32_t>
82 constexpr static int TypeCode = _DATATYPE_UINT32;
86struct ImageStructTypeCode<int32_t>
88 constexpr static int TypeCode = _DATATYPE_INT32;
92struct ImageStructTypeCode<uint64_t>
94 constexpr static int TypeCode = _DATATYPE_UINT64;
97struct ImageStructTypeCode<int64_t>
99 constexpr static int TypeCode = _DATATYPE_INT64;
102struct ImageStructTypeCode<float>
104 constexpr static int TypeCode = _DATATYPE_FLOAT;
108struct ImageStructTypeCode<double>
110 constexpr static int TypeCode = _DATATYPE_DOUBLE;
114struct ImageStructTypeCode<std::complex<float>>
116 constexpr static int TypeCode = _DATATYPE_COMPLEX_FLOAT;
120struct ImageStructTypeCode<std::complex<double>>
122 constexpr static int TypeCode = _DATATYPE_COMPLEX_DOUBLE;
145template <
typename _dataT>
156 dataT *m_raw{
nullptr };
158 eigenMap<dataT> *m_map{
nullptr };
170 const std::string &imname );
191 open(
const std::string &imname );
197 void create(
const std::string &imname,
207 void create(
const std::string &imname,
227 uint32_t
size(
unsigned n );
288 template <
typename eigenT>
297 void setWrite(
bool wrflag =
true );
308template <
typename dataT>
313template <
typename dataT>
319template <
typename dataT>
322 create( imname, im );
325template <
typename dataT>
328 create( imname, sz0, sz1 );
331template <
typename dataT>
337template <
typename dataT>
342 ImageStreamIO_closeIm( m_image );
355 errno_t rv = ImageStreamIO_openIm( m_image, imname.c_str() );
357 if( rv != IMAGESTREAMIO_SUCCESS )
361 throw err::mxException(
"", 0,
"", 0,
"", 0,
"ImageStreamIO_openIm returned an error" );
364 if( ImageStructTypeCode<dataT>::TypeCode != m_image->md->datatype )
368 throw std::invalid_argument(
"shmim datatype does not match template type" );
372 m_raw = (
dataT *)m_image->array.raw;
373 m_size_0 = m_image->md->size[0];
374 m_size_1 = m_image->md->size[1];
379template <
typename dataT>
384 ImageStreamIO_closeIm( m_image );
402 errno_t rv = ImageStreamIO_createIm_gpu( m_image,
406 ImageStructTypeCode<dataT>::TypeCode,
411 CIRCULAR_BUFFER | ZAXIS_TEMPORAL,
414 if( rv != IMAGESTREAMIO_SUCCESS )
418 throw err::mxException(
"", 0,
"", 0,
"", 0,
"ImageStreamIO_createIm_gpu returned an error" );
421 if( ImageStructTypeCode<dataT>::TypeCode != m_image->md->datatype )
425 throw std::invalid_argument(
"shmim datatype does not match template type" );
429 m_raw = (
dataT *)m_image->array.raw;
430 m_size_0 = m_image->md->size[0];
431 m_size_1 = m_image->md->size[1];
436template <
typename dataT>
439 create( imname, im.rows(), im.cols() );
443template <
typename dataT>
446 if( m_map ==
nullptr )
448 throw err::mxException(
"", 0,
"", 0,
"", 0,
"Image is not open (map is null)" );
454template <
typename dataT>
460template <
typename dataT>
467template <
typename dataT>
470 if( m_map !=
nullptr )
476 if( m_image ==
nullptr )
481 errno_t rv = ImageStreamIO_closeIm( m_image );
485 if( rv != IMAGESTREAMIO_SUCCESS )
486 throw err::mxException(
"", 0,
"", 0,
"", 0,
"ImageStreamIO_closeIm returned an error" );
489template <
typename dataT>
495template <
typename dataT>
501template <
typename dataT>
516template <
typename dataT>
519 if( m_image ==
nullptr )
524 if( m_raw != (
dataT *)m_image->array.raw || m_size_0 != m_image->md->size[0] || m_size_1 != m_image->md->size[1] ||
525 ImageStructTypeCode<dataT>::TypeCode != m_image->md->datatype )
533template <
typename dataT>
534template <
typename eigenT>
537 if( m_image ==
nullptr )
539 throw err::mxException(
"", 0,
"", 0,
"", 0,
"Image is not open (image is null)" );
542 if( m_map ==
nullptr )
544 throw err::mxException(
"", 0,
"", 0,
"", 0,
"Image is not open (map is null)" );
558template <
typename dataT>
561 if( m_image ==
nullptr )
566 m_image->md->write = wrflag;
569template <
typename dataT>
572 if( m_image ==
nullptr )
577 errno_t rv = ImageStreamIO_UpdateIm( m_image );
578 m_image->md->atime = m_image->md->writetime;
580 if( rv != IMAGESTREAMIO_SUCCESS )
582 throw err::mxException(
"", 0,
"", 0,
"", 0,
"ImageStreamIO_UpdateIm returned an error" );
The mxlib exception class.
Class to interface with an ImageStreamIO image in shared memory.
uint32_t size(unsigned n)
Get the size of a dimension of the image.
milkImage()
Default c'tor.
uint64_t m_size_1
The size[1] of the image when last opened.
void create(const std::string &imname, uint32_t sz0, uint32_t sz1)
Create (or re-create) and connect to an image, allocating the eigenMap.
milkImage & operator=(const eigenT &im)
Copy data from an Eigen Array type to the shared memory stream.
IMAGE * m_image
Pointer to the ImageStreamIO IMAGE structure.
uint32_t rows()
Get the width of the image.
_dataT dataT
The data type.
std::string m_name
The image name, from name.im.shm (the .im.shm should not be given).
bool valid()
Checks if the image is connected and is still the same format as when connected.
void setWrite(bool wrflag=true)
Set the write flag.
eigenMap< dataT > & operator()()
Get an eigenMap.
void reopen()
Reopens the image.
uint32_t cols()
Get the height of the image.
void post()
Update the metadata and post all semaphores.
void open(const std::string &imname)
Open and connect to an image, allocating the eigenMap.
uint64_t m_size_0
The size[0] of the image when last opened.
Tools for using the eigen library for image processing.
Eigen::Array< scalarT, -1, -1 > eigenImage
Definition of the eigenImage type, which is an alias for Eigen::Array.
Eigen::Map< Eigen::Array< scalarT, -1, -1 > > eigenMap
Definition of the eigenMap type, which is an alias for Eigen::Map<Array>.