#include "project_utilities.h"
Go to the source code of this file.
Defines | |
#define | TCLSADIE_ROI_H 1 |
The standard guard against including the same header twice. | |
#define | ROI_PROPERTY_NAME "oldfashioned_roi_list" |
This string identifies the original SADIE ROI as an image property. | |
Functions | |
void | CREATE_ROI (IMAGE *in, const char *name, const char *dkey, uint32_t xbgn, uint32_t ybgn, uint32_t xend, uint32_t yend, int matrix, uint32_t inc, uint32_t nlev) |
Create a data structure summarizing a rectangular ROI within an image. |
In future the tclSadie regions of interest (ROIs) might have a wider range of properties, and there might be more than one type of ROI, but at the moment we provide just the original SADIE ROI, storing it as an image property:
Definition in file tclSadie_ROI.h.
|
Create a data structure summarizing a rectangular ROI within an image.
Note that this is currently inefficient and inelegant: it operates on a partial copy of the original image rather than simply examining the original pixel values. The
Definition at line 107 of file tclSadie_ROI.c. References sad_get_doc_property(), and sad_put_doc_property(). Referenced by Sadie_Plot_CreateROICmd(). |