/* * render.c * * Render a high dynamic range buffer in some sensible way * * (c) 2006-2010 Thomas White * * Part of CrystFEL - crystallography with a FEL * */ #ifdef HAVE_CONFIG_H #include #endif #ifdef HAVE_GTK #include #endif #include #include #include #include #include #include "hdf5-file.h" #include "render.h" #include "peaks.h" #include "filters.h" #include "utils.h" static void render_rgb(float val, float max, float *rp, float *gp, float *bp) { int s; float p; float r, g, b; s = val / (max/6); p = fmod(val, max/6.0); p /= (max/6.0); r = 0.0; g = 0.0; b = 0.0; if ( (val < 0.0) ) { s = 0; p = 0; } if ( (val > max) ) { s = 6; } switch ( s ) { case 0 : { /* Black to blue */ r = 0; g = 0; b = p; break; } case 1 : { /* Blue to pink */ r = p; g = 0; b = 1.0; break; } case 2 : { /* Pink to red */ r = 1.0; g = 0; b = (1.0-p)*1.0; break; } case 3 : { /* Red to Orange */ r = 1.0; g = 0.5*p; b = 0; break; } case 4 : { /* Orange to Yellow */ r = 1.0; g = 0.5 + 0.5*p; b = 0; break; } case 5 : { /* Yellow to White */ r = 1.0; g = 1.0; b = 1.0*p; break; } case 6 : { /* Pixel has hit the maximum value */ r = 1.0; g = 1.0; b = 1.0; break; } } *rp = r; *gp = g; *bp = b; } static void render_mono(float val, float max, float *rp, float *gp, float *bp) { float p; p = val / max; if ( val < 0.0 ) p = 0.0; if ( val > max ) p = 1.0; *rp = p; *gp = p; *bp = p; } static void render_invmono(float val, float max, float *rp, float *gp, float *bp) { float p; p = val / max; p = 1.0 - p; if ( val < 0.0 ) p = 1.0; if ( val > max ) p = 0.0; *rp = p; *gp = p; *bp = p; } void render_scale(float val, float max, int scale, float *rp, float *gp, float *bp) { switch ( scale ) { case SCALE_COLOUR : render_rgb(val, max, rp, gp, bp); break; case SCALE_MONO : render_mono(val, max, rp, gp, bp); break; case SCALE_INVMONO : render_invmono(val, max, rp, gp, bp); break; } } #ifdef HAVE_GTK static void *render_bin(float *in, int inw, int inh, int binning, float *maxp) { float *data; int x, y; int w, h; float max; w = inw / binning; h = inh / binning; /* Some pixels might get discarded */ data = malloc(w*h*sizeof(float)); max = 0.0; for ( x=0; x max ) max = data[x+w*y]; } } *maxp = max; return data; } float *render_get_image_binned(DisplayWindow *dw, int binning, float *max) { struct image *image; float *data; if ( (dw->image == NULL) || (dw->image_dirty) ) { image = malloc(sizeof(struct image)); if ( image == NULL ) return NULL; image->features = NULL; image->data = NULL; /* We don't care about the photon energy here */ hdf5_read(dw->hdfile, image, 1, 0.0); dw->image_dirty = 0; if ( dw->cmfilter ) filter_cm(image); if ( dw->noisefilter ) filter_noise(image, NULL); /* Deal with the old image, if existing */ if ( dw->image != NULL ) { image->features = dw->image->features; if ( dw->image->data != NULL ) free(dw->image->data); free(dw->image); } dw->image = image; } data = render_bin(dw->image->data, hdfile_get_width(dw->hdfile), hdfile_get_height(dw->hdfile), binning, max); return data; } /* NB This function is shared between render_get_image() and * render_get_colour_scale() */ static void render_free_data(guchar *data, gpointer p) { free(data); } static void show_marked_features(struct image *image, guchar *data, int w, int h, int binning) { int i; float r = 10.0/binning; if ( image->features == NULL ) return; for ( i=0; ifeatures); i++ ) { struct imagefeature *f; float x, y; double th; f = image_get_feature(image->features, i); if ( f == NULL ) continue; x = f->x / (float)binning; y = f->y / (float)binning; for ( th=0; th<2*M_PI; th+=M_PI/40.0 ) { int nx, ny; nx = x + r*cos(th); ny = y + r*sin(th); if ( nx < 0 ) continue; if ( ny < 0 ) continue; if ( nx >= w ) continue; if ( ny >= h ) continue; data[3*( nx+w*(h-1-ny) )+0] = 128; data[3*( nx+w*(h-1-ny) )+1] = 128; data[3*( nx+w*(h-1-ny) )+2] = 30; } } } /* Return a pixbuf containing a rendered version of the image after binning. * This pixbuf might be scaled later - hopefully mostly in a downward * direction. */ GdkPixbuf *render_get_image(DisplayWindow *dw) { int mw, mh, w, h; guchar *data; float *hdr; size_t x, y; float max; mw = hdfile_get_width(dw->hdfile); mh = hdfile_get_height(dw->hdfile); w = mw / dw->binning; h = mh / dw->binning; /* High dynamic range version */ hdr = render_get_image_binned(dw, dw->binning, &max); if ( hdr == NULL ) return NULL; /* Rendered (colourful) version */ data = malloc(3*w*h); if ( data == NULL ) { free(hdr); return NULL; } max /= dw->boostint; if ( max <= 6 ) { max = 10; } /* These x,y coordinates are measured relative to the bottom-left * corner */ for ( y=0; yscale, &r, &g, &b); /* Stuff inside square brackets makes this pixel go to * the expected location in the pixbuf (which measures * from the top-left corner */ data[3*( x+w*(h-1-y) )+0] = 255*r; data[3*( x+w*(h-1-y) )+1] = 255*g; data[3*( x+w*(h-1-y) )+2] = 255*b; } } show_marked_features(dw->image, data, w, h, dw->binning); /* Finished with this */ free(hdr); /* Create the pixbuf from the 8-bit display data */ return gdk_pixbuf_new_from_data(data, GDK_COLORSPACE_RGB, FALSE, 8, w, h, w*3, render_free_data, NULL); } GdkPixbuf *render_get_colour_scale(size_t w, size_t h, int scale) { guchar *data; size_t x, y; int max; data = malloc(3*w*h); if ( data == NULL ) return NULL; max = h; for ( y=0; ywidth; h = dw->height; hdr = render_get_image_binned(dw, dw->binning, &max); if ( hdr == NULL ) return 1; fh = fopen(filename, "wb"); if ( !fh ) { ERROR("Couldn't open output file.\n"); return 1; } png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL); if ( !png_ptr ) { ERROR("Couldn't create PNG write structure.\n"); fclose(fh); return 1; } info_ptr = png_create_info_struct(png_ptr); if ( !info_ptr ) { png_destroy_write_struct(&png_ptr, (png_infopp)NULL); ERROR("Couldn't create PNG info structure.\n"); fclose(fh); return 1; } if ( setjmp(png_jmpbuf(png_ptr)) ) { png_destroy_write_struct(&png_ptr, &info_ptr); fclose(fh); ERROR( "PNG write failed.\n"); return 1; } png_init_io(png_ptr, fh); png_set_IHDR(png_ptr, info_ptr, w, h, 8, PNG_COLOR_TYPE_RGB, PNG_INTERLACE_NONE, PNG_COMPRESSION_TYPE_DEFAULT, PNG_FILTER_TYPE_DEFAULT); row_pointers = malloc(h*sizeof(png_bytep *)); /* Write the image data */ max /= dw->boostint; if ( max <= 6 ) { max = 10; } for ( y=0; yscale, &r, &g, &b); row_pointers[y][3*x] = (png_byte)255*r; row_pointers[y][3*x+1] = (png_byte)255*g; row_pointers[y][3*x+2] = (png_byte)255*b; } } for ( y=0; yfeatures = NULL; image->data = NULL; hdf5_read(dw->hdfile, image, 1); if ( dw->cmfilter ) filter_cm(image); if ( dw->noisefilter ) filter_noise(image, NULL); th = TIFFOpen(filename, "w"); if ( th == NULL ) return 1; TIFFSetField(th, TIFFTAG_IMAGEWIDTH, image->width); TIFFSetField(th, TIFFTAG_IMAGELENGTH, image->height); TIFFSetField(th, TIFFTAG_SAMPLESPERPIXEL, 1); TIFFSetField(th, TIFFTAG_SAMPLEFORMAT, SAMPLEFORMAT_IEEEFP); TIFFSetField(th, TIFFTAG_BITSPERSAMPLE, 32); TIFFSetField(th, TIFFTAG_PHOTOMETRIC, PHOTOMETRIC_MINISBLACK); TIFFSetField(th, TIFFTAG_ORIENTATION, ORIENTATION_TOPLEFT); TIFFSetField(th, TIFFTAG_PLANARCONFIG, PLANARCONFIG_CONTIG); TIFFSetField(th, TIFFTAG_ROWSPERSTRIP, TIFFDefaultStripSize(th, image->width*4)); line = _TIFFmalloc(TIFFScanlineSize(th)); for ( y=0; yheight; y++ ) { memcpy(line, &image->data[(image->height-1-y)*image->width], image->width*4); TIFFWriteScanline(th, line, y, 0); } _TIFFfree(line); TIFFClose(th); #else STATUS("No TIFF support.\n"); #endif return 0; } int render_tiff_int16(DisplayWindow *dw, const char *filename) { #ifdef HAVE_TIFF TIFF *th; struct image *image; int16_t *line; int x, y; float max; /* Get raw, unbinned image data */ image = malloc(sizeof(struct image)); if ( image == NULL ) return 1; image->features = NULL; image->data = NULL; hdf5_read(dw->hdfile, image, 1); if ( dw->cmfilter ) filter_cm(image); if ( dw->noisefilter ) filter_noise(image, NULL); th = TIFFOpen(filename, "w"); if ( th == NULL ) return 1; TIFFSetField(th, TIFFTAG_IMAGEWIDTH, image->width); TIFFSetField(th, TIFFTAG_IMAGELENGTH, image->height); TIFFSetField(th, TIFFTAG_SAMPLESPERPIXEL, 1); TIFFSetField(th, TIFFTAG_SAMPLEFORMAT, SAMPLEFORMAT_INT); /* (signed) */ TIFFSetField(th, TIFFTAG_BITSPERSAMPLE, 16); TIFFSetField(th, TIFFTAG_PHOTOMETRIC, PHOTOMETRIC_MINISBLACK); TIFFSetField(th, TIFFTAG_ORIENTATION, ORIENTATION_TOPLEFT); TIFFSetField(th, TIFFTAG_PLANARCONFIG, PLANARCONFIG_CONTIG); TIFFSetField(th, TIFFTAG_ROWSPERSTRIP, TIFFDefaultStripSize(th, image->width*4)); line = _TIFFmalloc(TIFFScanlineSize(th)); max = 0.0; for ( y=0; yheight; y++ ) { for ( x=0;xwidth; x++ ) { float val; val = image->data[x+image->height*y]; if ( val > max ) max = val; } } max /= 32767.0; for ( y=0; yheight; y++ ) { for ( x=0;xwidth; x++ ) { float val; val = image->data[x+(image->height-1-y)*image->width]; val *= ((float)dw->boostint/max); /* Clamp to 16-bit range, * and work round inability of most readers to deal * with signed integers. */ val += 1000.0; if ( val > 32767.0 ) val = 32767.0; if ( val < 0.0 ) val = 0.0; line[x] = val; } TIFFWriteScanline(th, line, y, 0); } _TIFFfree(line); TIFFClose(th); #else STATUS("No TIFF support.\n"); #endif return 0; } #endif /* HAVE_GTK */