00001 #include "brip_region_pixel.h" 00002 #include <vcl_iostream.h> 00003 00004 vcl_ostream& operator<<(vcl_ostream& s, brip_region_pixel const& sd) 00005 { 00006 return 00007 s << "[location:(" << sd.location_.x() << ' ' << sd.location_.y() 00008 << ") nearest:(" << sd.nearest_.x() << ' ' << sd.nearest_.y() 00009 << ") cost:" << sd.cost_ 00010 << " count:" << sd.count_ 00011 << " label:" << sd.label_ 00012 << " dist:" << sd.dist_ << ']'; 00013 }