We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add pixel lookup to correct "bad" non-linear scanners.
Modify:
void CLSMImage:: fill( TTTR* tttr_data, std::vector<int> channels, bool clear, const std::vector<std::pair<int,int>> µ_time_ranges)
Currently the pixel number is calculated linearly. Add option for pixel lookup.
auto pixel_nbr = (tttr_data->macro_times[event_i] - line_start_time) / pixel_duration;
Pass a lookup table (for every pixel in Image) to fill function. This allows correcting bad scanners on the edges.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add pixel lookup to correct "bad" non-linear scanners.
Modify:
Currently the pixel number is calculated linearly. Add option for pixel lookup.
Pass a lookup table (for every pixel in Image) to fill function. This allows correcting bad scanners on the edges.
The text was updated successfully, but these errors were encountered: