Loading [MathJax]/extensions/tex2jax.js
Logo ROOT  
Reference Guide
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Loading...
Searching...
No Matches
image2hist.C File Reference

Detailed Description

View in nbviewer Open in SWAN Create a 2-D histogram from an image.

void image2hist()
{
TASImage image("$ROOTSYS/tutorials/image/rose512.jpg");
UInt_t yPixels = image.GetHeight();
UInt_t xPixels = image.GetWidth();
UInt_t *argb = image.GetArgbArray();
TH2D* h = new TH2D("h","Rose histogram",xPixels,-1,1,yPixels,-1,1);
for (int row=0; row<xPixels; ++row) {
for (int col=0; col<yPixels; ++col) {
int index = col*xPixels+row;
float grey = float(argb[index]&0xff)/256;
h->SetBinContent(row+1,yPixels-col,grey);
}
}
h->Draw("colz");
}
#define h(i)
Definition RSha256.hxx:106
unsigned int UInt_t
Definition RtypesCore.h:46
@ kCubehelix
Definition TColor.h:109
R__EXTERN TStyle * gStyle
Definition TStyle.h:412
Image class.
Definition TASImage.h:31
2-D histogram with a double per channel (see TH1 documentation)}
Definition TH2.h:292
void SetPalette(Int_t ncolors=kBird, Int_t *colors=0, Float_t alpha=1.)
See TColor::SetPalette.
Definition TStyle.cxx:1782
Author
Olivier Couet

Definition in file image2hist.C.