#include <section/section.h>
#include <vipl/vipl_with_section/accessors/vipl_accessors_section.h>
#include <vipl/vipl_threshold.h>
#include <vxl_config.h>
typedef section<vxl_byte,2> img_type;
#include <vil/vil_image_view.h>
#include <vil/vil_load.h>
#include <vil/vil_save.h>
#include <vcl_iostream.h>
#include <vcl_cstdlib.h>
#include <vcl_cstring.h>
int
main(int argc, char** argv)
{
if (argc < 3) { vcl_cerr << "Syntax: example2_threshold file_in file_out [threshold]\n"; return 1; }
vil_image_view<vxl_byte> in = vil_load(argv[1]);
if (!in) { vcl_cerr << "Please use a ubyte image as input\n"; return 2; }
vil_image_view<vxl_byte> out(in.ni(),in.nj(),in.nplanes());
int xs = in.ni();
int ys = in.nj();
vxl_byte threshold = (argc < 4) ? 128 : vxl_byte(vcl_atoi(argv[3]));
img_type src(xs,ys);
vcl_memcpy(src.buffer, in.memory_chunk()->const_data(), in.size_bytes());
vipl_threshold<img_type,img_type,vxl_byte,vxl_byte> op(threshold,0,255);
op.put_in_data_ptr(&src);
op.put_out_data_ptr(&src);
op.filter();
vcl_memcpy(out.memory_chunk()->data(), src.buffer, out.size_bytes());
vil_save(out, argv[2], "pnm");
vcl_cout << "Written image of type PGM to " << argv[2] << vcl_endl;
return 0;
}