/*
* ofxCvFloatImage.h
* by stefanix, zach
*
* This is essentially an IPL_DEPTH_8U with three channels.
* Pixel values are typically from 0-255 for each channel.
*
*/
#pragma once
#include "ofxCvImage.h"
class ofxCvColorImage : public ofxCvImage {
public:
using ofxCvImage::setFromPixels;
ofxCvColorImage();
ofxCvColorImage( const ofxCvColorImage& mom );
// virtual void allocate( int w, int h ); //in base class
virtual void clear();
//virtual float getWidth(); //in base class
//virtual float getHeight(); //in base class
// virtual void setUseTexture( bool bUse ); //in base class
// virtual ofTexture& getTextureReference(); //in base class
// ROI - region of interest
//
// virtual void setROI( int x, int y, int w, int h ); //in base class
// virtual void setROI( ofRectangle& rect ); //in base class
// virtual ofRectangle getROI(); //in base class
// virtual void resetROI(); //in base class
// virtual ofRectangle getIntersectionROI( ofRectangle& rec1,
// ofRectangle& rec2 ); // inbase class
// Set Pixel Data
//
virtual void set( float value );
virtual void set( int valueR, int valueG, int valueB);
virtual void operator -= ( float value );
virtual void operator += ( float value );
virtual void setFromPixels( const unsigned char * _pixels, int w, int h );
virtual void setRoiFromPixels( const unsigned char * _pixels, int w, int h );
virtual void setFromGrayscalePlanarImages( ofxCvGrayscaleImage& red, ofxCvGrayscaleImage& green, ofxCvGrayscaleImage& blue );
virtual void operator = ( const ofPixels & _pixels );
virtual void operator = ( const ofxCvGrayscaleImage& mom );
virtual void operator = ( const ofxCvColorImage& mom );
virtual void operator = ( const ofxCvFloatImage& mom );
virtual void operator = ( const ofxCvShortImage& mom );
virtual void operator = ( const IplImage* mom );
// virtual void operator -= ( ofxCvImage& mom ); //in base class
// virtual void operator += ( ofxCvImage& mom ); //in base class
using ofxCvImage::operator+=; //force inheritance
using ofxCvImage::operator-=; //force inheritance
// virtual void operator *= ( ofxCvImage& mom ); //in base class
// virtual void operator &= ( ofxCvImage& mom ); //in base class
// Get Pixel Data
//
//virtual unsigned char* getPixels(); //in base class
//virtual ofPixelsRef getPixelsRef(); //in base class
//virtual unsigned char* getRoiPixels(); //in base class
// virtual IplImage* getCvImage(); //in base class
virtual void convertToGrayscalePlanarImages( ofxCvGrayscaleImage& red, ofxCvGrayscaleImage& green, ofxCvGrayscaleImage& blue );
virtual void convertToGrayscalePlanarImage (ofxCvGrayscaleImage& grayImage, int whichPlane);
// virtual IplImage* getCvImage(); //in base class
// Draw Image
//
//virtual void draw( float x, float y ); //in base class
//virtual void draw( float x, float y, float w, float h ); //in base class
//virtual void drawROI( float x, float y ); //in base class
//virtual void drawROI( float x, float y, float w, float h ); //in base class
//virtual void setAnchorPercent( float xPct, float yPct ); //in base class
//virtual void setAnchorPoint( int x, int y ); //in base class
//virtual void resetAnchor(); //in base class
// Image Filter Operations
//
virtual void contrastStretch(); // not yet implemented for this type
virtual void convertToRange( float min, float max );
// virtual void erode( ); //in base class
// virtual void dilate( ); //in base class
// virtual void blur( int value=3 ); //in base class
// virtual void blurGaussian( int value=3 ); //in base class
// virtual void invert(); //in base class
// Image Transformation Operations
//
virtual void resize( int w, int h );
virtual void scaleIntoMe( ofxCvImage& mom, int interpolationMethod = CV_INTER_NN);
virtual void convertRgbToHsv();
virtual void convertHsvToRgb();
// virtual void mirror( bool bFlipVertically, bool bFlipHorizontally ); //in base class
// virtual void translate( float x, float y ); //in base class
// virtual void rotate( float angle, float centerX, float centerY ); //in base class
// virtual void scale( float scaleX, float sclaeY ); //in base class
// virtual void transform( float angle, float centerX, float centerY,
// float scaleX, float scaleY,
// float moveX, float moveY ); //in base class
// virtual void undistort( float radialDistX, float radialDistY,
// float tangentDistX, float tangentDistY,
// float focalX, float focalY,
// float centerX, float centerY ); //in base class
// virtual void remap( IplImage* mapX, IplImage* mapY ); //in base class
// virtual void warpPerspective( ofPoint& A, ofPoint& B,
// ofPoint& C, ofPoint& D ); //in base class
// virtual void warpIntoMe( ofxCvImage& mom,
// ofPoint src[4], ofPoint dst[4] ); //in base class
// Other Image Operations
//
// virtual int countNonZeroInRegion( int x, int y, int w, int h ); //in base class
protected:
void allocateTexture();
void allocatePixels(int w, int h);
void init();
IplImage* cvGrayscaleImage; // internal helper grayscale, allocated on demand
};
Comments