Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/jaz/tomography/programs/reconstruct_particle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ void ReconstructParticleProgram::processTomograms(
part_id, fc, tomogram.centre, tomogram.optics.pixelSize);
std::vector<d4Matrix> projCut(fc), projPart(fc);

const std::vector<bool> isVisible = tomogram.determineVisiblity(traj, s/2.0);
const std::vector<bool> isVisible = tomogram.determineVisiblity(traj, binning * s / 2.0);

const bool circle_crop = do_circle_crop;

Expand Down
2 changes: 1 addition & 1 deletion src/renderEER.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ TIFFErrorHandler EERRenderer::prevTIFFWarningHandler = NULL;
void EERRenderer::TIFFWarningHandler(const char* module, const char* fmt, va_list ap)
{
// Silence warnings for private tags
if (strcmp("Unknown field with tag %d (0x%x) encountered", fmt) == 0)
if (strstr("Unknown field with tag", fmt) == 0 || strstr("encountered", fmt) == 0)
return;

if (prevTIFFWarningHandler != NULL)
Expand Down
Loading