Skip to content

Commit

Permalink
Address issue #24: .tiff extension missing from debugging output images
Browse files Browse the repository at this point in the history
  • Loading branch information
dicengine committed Jan 27, 2016
1 parent 756a7c5 commit f81667f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/DICe_Schema.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1551,7 +1551,7 @@ Schema::write_deformed_subset_intensity_image(Teuchos::RCP<Objective> obj){
ss << dirStr << "deformedSubset_" << obj->correlation_point_global_id() << "_";
for(int_t i=0;i<num_zeros;++i)
ss << "0";
ss << image_frame_;
ss << image_frame_ << ".tif";
obj->subset()->write_tiff(ss.str(),true);
#endif
}
Expand Down Expand Up @@ -1581,7 +1581,7 @@ Schema::write_reference_subset_intensity_image(Teuchos::RCP<Objective> obj){
ss << dirStr << "evolvedSubset_" << obj->correlation_point_global_id() << "_";
for(int_t i=0;i<num_zeros;++i)
ss << "0";
ss << image_frame_;
ss << image_frame_ << ".tif";
obj->subset()->write_tiff(ss.str());
#endif
}
Expand Down

0 comments on commit f81667f

Please sign in to comment.