#include <processor.h>


Public Member Functions | |
| HistogramBin () | |
| void | process_inplace (EMData *image) |
| To process an image in-place. | |
| string | get_name () const |
| Get the processor's name. | |
| TypeDict | get_param_types () const |
| Get processor parameter information in a dictionary. | |
| string | get_desc () const |
| Get the descrition of this specific processor. | |
Static Public Member Functions | |
| static Processor * | NEW () |
Static Public Attributes | |
| static const string | NAME = "histogram.bin" |
Protected Attributes | |
| int | default_bins |
The histogram is comprised of 'nbins' bins, and the value assigned to each pixel in the bin is the midpoint of the bin's upper and lower limits. Defaults to 256 bins
| nbins | The number of bins the pixel values will be compressed into | |
| debug | Outputs debugging information (number of pixels per bin) |
Definition at line 6742 of file processor.h.
| EMAN::HistogramBin::HistogramBin | ( | ) | [inline] |
| void HistogramBin::process_inplace | ( | EMData * | image | ) | [virtual] |
To process an image in-place.
For those processors which can only be processed out-of-place, override this function to just print out some error message to remind user call the out-of-place version.
| image | The image to be processed. |
Implements EMAN::Processor.
Definition at line 9032 of file processor.cpp.
References default_bins, EMAN::EMData::get_attr(), EMAN::EMData::get_data(), EMAN::EMData::get_size(), InvalidParameterException, max, min, EMAN::Processor::params, and EMAN::Dict::set_default().
09033 { 09034 float min = image->get_attr("minimum"); 09035 float max = image->get_attr("maximum"); 09036 float nbins = (float)params.set_default("nbins",default_bins); 09037 bool debug = params.set_default("debug",false); 09038 09039 vector<int> debugscores; 09040 if ( debug ) { 09041 debugscores = vector<int>((int)nbins, 0); 09042 } 09043 09044 if ( nbins < 0 ) throw InvalidParameterException("nbins must be greater than 0"); 09045 09046 float bin_width = (max-min)/nbins; 09047 float bin_val_offset = bin_width/2.0f; 09048 09049 size_t size = image->get_size(); 09050 float* dat = image->get_data(); 09051 09052 for(size_t i = 0; i < size; ++i ) { 09053 float val = dat[i]; 09054 val -= min; 09055 int bin = (int) (val/bin_width); 09056 09057 // This makes the last interval [] and not [) 09058 if (bin == nbins) bin -= 1; 09059 09060 dat[i] = min + bin*bin_width + bin_val_offset; 09061 if ( debug ) { 09062 debugscores[bin]++; 09063 } 09064 } 09065 09066 if ( debug ) { 09067 int i = 0; 09068 for( vector<int>::const_iterator it = debugscores.begin(); it != debugscores.end(); ++it, ++i) 09069 cout << "Bin " << i << " has " << *it << " pixels in it" << endl; 09070 } 09071 09072 }
| string EMAN::HistogramBin::get_name | ( | ) | const [inline, virtual] |
Get the processor's name.
Each processor is identified by a unique name.
Implements EMAN::Processor.
Definition at line 6749 of file processor.h.
References EMAN::NormalizeUnitSumProcessor::NAME.
06750 { 06751 return NAME; 06752 }
| static Processor* EMAN::HistogramBin::NEW | ( | ) | [inline, static] |
| TypeDict EMAN::HistogramBin::get_param_types | ( | ) | const [inline, virtual] |
Get processor parameter information in a dictionary.
Each parameter has one record in the dictionary. Each record contains its name, data-type, and description.
Reimplemented from EMAN::Processor.
Definition at line 6759 of file processor.h.
References EMAN::EMObject::BOOL, EMAN::EMObject::INT, and EMAN::TypeDict::put().
06760 { 06761 TypeDict d; 06762 d.put("nbins", EMObject::INT, "The number of bins the pixel values will be compressed into"); 06763 d.put("debug", EMObject::BOOL, "Outputs debugging information (number of pixels per bin)"); 06764 return d; 06765 }
| string EMAN::HistogramBin::get_desc | ( | ) | const [inline, virtual] |
Get the descrition of this specific processor.
This function must be overwritten by a subclass.
Implements EMAN::Processor.
Definition at line 6767 of file processor.h.
06768 { 06769 return "Bins pixel values, similar to calculating a histogram. The histogram is comprised of 'nbins' bins, and the value assigned to each pixel in the bin is the midpoint of the bin's upper and lower limits. Defaults to 256 bins"; 06770 }
const string HistogramBin::NAME = "histogram.bin" [static] |
Definition at line 6772 of file processor.h.
int EMAN::HistogramBin::default_bins [protected] |
1.5.6