/* * process_image.c * * The processing pipeline for one image * * Copyright © 2012-2014 Deutsches Elektronen-Synchrotron DESY, * a research centre of the Helmholtz Association. * * Authors: * 2010-2014 Thomas White * 2014 Valerio Mariani * * This file is part of CrystFEL. * * CrystFEL is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * CrystFEL is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with CrystFEL. If not, see . * */ #ifdef HAVE_CONFIG_H #include #endif #include #include #include #include #include #include #include "utils.h" #include "hdf5-file.h" #include "index.h" #include "peaks.h" #include "detector.h" #include "filters.h" #include "thread-pool.h" #include "geometry.h" #include "stream.h" #include "reflist-utils.h" #include "process_image.h" #include "integration.h" static int cmpd2(const void *av, const void *bv) { double *ap, *bp; double a, b; ap = (double *)av; bp = (double *)bv; a = ap[1]; b = bp[1]; if ( fabs(a) < fabs(b) ) return -1; return 1; } static void refine_radius(Crystal *cr) { Reflection *refl; RefListIterator *iter; double vals[num_reflections(crystal_get_reflections(cr))*2]; int n = 0; int i; double ti = 0.0; /* Total intensity */ for ( refl = first_refl(crystal_get_reflections(cr), &iter); refl != NULL; refl = next_refl(refl, iter) ) { double rlow, rhigh, p; int val = 0; if ( get_intensity(refl) > 9.0*get_esd_intensity(refl) ) { val = 1; } get_partial(refl, &rlow, &rhigh, &p); vals[(2*n)+0] = val; vals[(2*n)+1] = fabs((rhigh+rlow)/2.0); n++; } /* Sort in ascending order of absolute "deviation from Bragg" */ qsort(vals, n, sizeof(double)*2, cmpd2); /* Calculate cumulative number of very strong reflections as a function * of absolute deviation from Bragg */ for ( i=0; i 0.90*ti ) break; } crystal_set_profile_radius(cr, fabs(vals[2*i+1])); } void process_image(const struct index_args *iargs, struct pattern_args *pargs, Stream *st, int cookie, const char *tmpdir, int results_pipe, int serial) { float *data_for_measurement; size_t data_size; int check; struct hdfile *hdfile; struct image image; int i; int r; int ret; char *rn; image.features = NULL; image.data = NULL; image.flags = NULL; image.copyme = iargs->copyme; image.id = cookie; image.filename = pargs->filename_p_e->filename; image.event = pargs->filename_p_e->ev; image.beam = iargs->beam; image.det = iargs->det; image.crystals = NULL; image.n_crystals = 0; image.serial = serial; hdfile = hdfile_open(image.filename); if ( hdfile == NULL ) { ERROR("Couldn't open file: %s\n", image.filename); return; } check = hdf5_read2(hdfile, &image, image.event, 0); if ( check ) { return; } /* Take snapshot of image after CM subtraction but before applying * horrible noise filters to it */ data_size = image.width * image.height * sizeof(float); data_for_measurement = malloc(data_size); memcpy(data_for_measurement, image.data, data_size); if ( iargs->median_filter > 0 ) { filter_median(&image, iargs->median_filter); } if ( iargs->noisefilter ) { filter_noise(&image); } mark_resolution_range_as_bad(&image, iargs->highres, +INFINITY); switch ( iargs->peaks ) { case PEAK_HDF5: /* Get peaks from HDF5 */ if ( get_peaks(&image, hdfile, iargs->hdf5_peak_path, iargs->cxi_hdf5_peaks, pargs->filename_p_e) ) { ERROR("Failed to get peaks from HDF5 file.\n"); } if ( !iargs->no_revalidate ) { validate_peaks(&image, iargs->min_snr, iargs->pk_inn, iargs->pk_mid, iargs->pk_out, iargs->use_saturated, iargs->check_hdf5_snr); } break; case PEAK_ZAEF: search_peaks(&image, iargs->threshold, iargs->min_gradient, iargs->min_snr, iargs->pk_inn, iargs->pk_mid,iargs->pk_out, iargs->use_saturated); break; } /* Get rid of noise-filtered version at this point * - it was strictly for the purposes of peak detection. */ free(image.data); image.data = data_for_measurement; rn = getcwd(NULL, 0); r = chdir(tmpdir); if ( r ) { ERROR("Failed to chdir to temporary folder: %s\n", strerror(errno)); hdfile_close(hdfile); return; } /* Index the pattern */ index_pattern(&image, iargs->indm, iargs->ipriv); r = chdir(rn); if ( r ) { ERROR("Failed to chdir: %s\n", strerror(errno)); hdfile_close(hdfile); return; } free(rn); pargs->n_crystals = image.n_crystals; for ( i=0; iint_meth, PMODEL_SCSPHERE, iargs->push_res, iargs->ir_inn, iargs->ir_mid, iargs->ir_out, INTDIAG_NONE, 0, 0, 0, results_pipe); for ( i=0; iint_meth, PMODEL_SCSPHERE, iargs->push_res, iargs->ir_inn, iargs->ir_mid, iargs->ir_out, iargs->int_diag, iargs->int_diag_h, iargs->int_diag_k, iargs->int_diag_l, results_pipe); ret = write_chunk(st, &image, hdfile, iargs->stream_peaks, iargs->stream_refls, pargs->filename_p_e->ev); if ( ret != 0 ) { ERROR("Error writing stream file.\n"); } int n = 0; for ( i=0; i 0 ) { STATUS("WARNING: %i implausibly negative reflection%s in %s.\n", n, n>1?"s":"", image.filename); } for ( i=0; in_panels; i++ ) { free(image.dp[i]); free(image.bad[i]); } free(image.dp); free(image.bad); free(image.data); if ( image.flags != NULL ) free(image.flags); image_feature_list_free(image.features); hdfile_close(hdfile); }