void testExternal() { report(0, "testing external image..."); unsigned char buf[EXT_HEIGHT][EXT_WIDTH]; { for (int x=0; x<EXT_WIDTH; x++) { for (int y=0; y<EXT_HEIGHT; y++) { buf[y][x] = 20; } } } ImageOf<PixelMono> img1; img1.setExternal(&buf[0][0],EXT_WIDTH,EXT_HEIGHT); checkEqual(img1.width(),EXT_WIDTH,"width check"); checkEqual(img1.height(),EXT_HEIGHT,"height check"); int mismatch = 0; for (int x=0; x<img1.width(); x++) { for (int y=0; y<img1.height(); y++) { img1.pixel(x,y) = 5; if (buf[y][x]!=5) { mismatch++; } } } checkEqual(mismatch,0,"delta check"); report(0, "testing various padding + alignments..."); for (int ww=1; ww<=17; ww++) { for (int hh=1; hh<=17; hh++) { for (int pad1=1; pad1<=9; pad1++) { for (int pad2=1; pad2<=9; pad2++) { int wwp1 = (ww%pad1)?(ww+pad1-(ww%pad1)):ww; FlexImage img; char *data = new char[wwp1*hh*3]; yAssert(data); img.setQuantum(pad1); img.setPixelCode(VOCAB_PIXEL_RGB); img.setPixelSize(3); img.setExternal(data,ww,hh); ImageOf<PixelRgb> target; target.setQuantum(pad2); target.copy(img); delete[] data; } } } } }
bool BayerCarrier::processDirect(const yarp::os::Bytes& bytes) { if (have_result) { memcpy(bytes.get(),out.getRawImage(),bytes.length()); return true; } //printf("Copyless conversion\n"); ImageOf<PixelRgb> wrap; wrap.setQuantum(out.getQuantum()); wrap.setExternal(bytes.get(),out.width(),out.height()); if (half) { debayerHalf(in,wrap); } else { debayerFull(in,wrap); } return true; }
bool OdeSdlSimulation::getImage(ImageOf<PixelRgb>& target) { int w = cameraSizeWidth; int h = cameraSizeHeight; int p = 3; char *buf=new char[w * h * p]; glReadPixels( 0, 0, w, h, GL_RGB, GL_UNSIGNED_BYTE, buf); ImageOf<PixelRgb> img; img.setQuantum(1); img.setExternal(buf,w,h); // inefficient flip! target.resize(img); int ww = img.width(); int hh = img.height(); for (int x=0; x<ww; x++) { for (int y=0; y<hh; y++) { target(x,y) = img(x,hh-1-y); } } glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); delete[] buf; return true; }
void RGBDSensorWrapper::shallowCopyImages(const ImageOf<PixelFloat>& src, ImageOf<PixelFloat>& dest) { dest.setQuantum(src.getQuantum()); dest.setExternal(src.getRawImage(), src.width(), src.height()); }