SpinnakerBayerConverter

Description

Bayer to RGB converter. Used only when Bayer pixel format selected

Values of this enumeration:

  • AVLConverter - Bayer converter from Aurora Vision Library
  • Default - Spinnaker Default method - deprecated
  • NoColorProcessing - No color processing
  • NearestNeighbour - Fastest but lowest quality
  • NearestNeighbourAvg - Nearest Neighbor with averaged green pixels.
  • EdgeSensing - Weights surrounding pixels based on localized edge orientation
  • HQLinear - Well-balanced speed and quality
  • Rigorous - Slowest but produces good results
  • Ipp - Multi-threaded with similar results to edge sensing
  • DirectionalFiltering - Best quality but much faster than rigorous
  • WeightedDirectionalFiltering - Weighted pixel average from different directions

namespace SpinnakerBayerConverter
{
	enum Type
	{
		AVLConverter,
		Default,
		NoColorProcessing,
		NearestNeighbour,
		NearestNeighbourAvg,
		EdgeSensing,
		HQLinear,
		Rigorous,
		Ipp,
		DirectionalFiltering,
		WeightedDirectionalFiltering
	};
}