test-BinRecognizer.C
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036 #include "Component/ModelManager.H"
00037
00038 #include "Media/FrameSeries.H"
00039 #include "Transport/FrameIstream.H"
00040 #include "Media/MediaOpts.H"
00041
00042 #include "Image/Image.H"
00043 #include "Image/Pixels.H"
00044 #include "Raster/Raster.H"
00045 #include "Image/CutPaste.H"
00046 #include "Image/OpenCVUtil.H"
00047
00048 #include "BeoSub/IsolateColor.H"
00049 #include "Image/DrawOps.H"
00050 #include "Image/ColorOps.H"
00051
00052 #include "GUI/XWinManaged.H"
00053
00054 #include "SeaBee/BinRecognizer.H"
00055
00056
00057 int main(int argc, char* argv[])
00058 {
00059
00060 MYLOGVERB = LOG_INFO;
00061
00062 ModelManager manager("BinRecognizer Tester");
00063
00064 nub::soft_ref<InputFrameSeries> ifs(new InputFrameSeries(manager));
00065 manager.addSubComponent(ifs);
00066
00067 manager.exportOptions(MC_RECURSE);
00068
00069
00070 if (manager.parseCommandLine(argc, argv,
00071 "[image {*.ppm}]",
00072 0, 1)
00073 == false) return(1);
00074
00075 int w = ifs->getWidth(), h = ifs->getHeight();
00076 std::string dims = convertToString(Dims(w, h));
00077 LINFO("image size: [%dx%d]", w, h);
00078 manager.setOptionValString(&OPT_InputFrameDims, dims);
00079
00080 manager.setModelParamVal("InputFrameDims", Dims(w, h),
00081 MC_RECURSE | MC_IGNORE_MISSING);
00082
00083 manager.start();
00084
00085 bool goforever = true;
00086
00087 rutz::shared_ptr<XWinManaged> dispWin;
00088 dispWin.reset(new XWinManaged(Dims(w*2,h*2), 0, 0, "Bin Recognizer Display"));
00089
00090
00091 rutz::shared_ptr<Image< PixRGB<byte> > > img;
00092 img.reset(new Image< PixRGB<byte> >(w,h, ZEROS));
00093
00094
00095
00096 rutz::shared_ptr<BinRecognizer> binRecognizer(new BinRecognizer());
00097 rutz::shared_ptr<Point2D<int> > binCenter(new Point2D<int>(0,0));
00098
00099 uint fNum = 0;
00100 while(goforever)
00101 {
00102 Image< PixRGB<byte> > dispImg(w*2,h*2, ZEROS);
00103 rutz::shared_ptr<Image< PixRGB<byte> > > outputImg(new Image<PixRGB<byte> >(w,h, ZEROS));
00104
00105 ifs->updateNext(); *img = ifs->readRGB();
00106 if(!img->initialized()) {Raster::waitForKey(); break; }
00107
00108 inplacePaste(dispImg, *img, Point2D<int>(0,0));
00109
00110 uint staleCount = 0;
00111
00112 binRecognizer->getBinLocation(img,
00113 outputImg,
00114 BinRecognizer::CONTOUR,
00115 binCenter,
00116 staleCount);
00117
00118 drawLine(*outputImg, *binCenter, *binCenter+2, PixRGB <byte> (255, 255,0), 3);
00119
00120 inplacePaste(dispImg, *outputImg, Point2D<int>(0,h));
00121
00122 dispWin->drawImage(dispImg, 0, 0);
00123 LINFO("%d",fNum); fNum++;
00124
00125
00126
00127 }
00128
00129
00130 manager.stop();
00131 return 0;
00132 }
00133
00134
00135
00136
00137
00138