|
@@ -17,6 +17,8 @@
|
|
|
|
|
|
#include "vislearning/baselib/ICETools.h"
|
|
|
|
|
|
+#include "core/basics/Exception.h"
|
|
|
+
|
|
|
using namespace OBJREC;
|
|
|
|
|
|
using namespace std;
|
|
@@ -33,7 +35,7 @@ ICETools::~ICETools()
|
|
|
|
|
|
void ICETools::selectRectangles ( const NICE::Image & panel, NICE::Image & overlay, vector<Vector> & x, int color )
|
|
|
{
|
|
|
- fthrow("ICETools::selectRectangles -- not yet implemented due to old ICE version.");
|
|
|
+ fthrow(Exception, "ICETools::selectRectangles -- not yet implemented due to old ICE version.");
|
|
|
// #ifndef NOVISUAL
|
|
|
// // new NICE code
|
|
|
// vector<RectT<double> > rectangles;
|
|
@@ -59,7 +61,7 @@ void ICETools::selectRectangles ( const NICE::Image & panel, NICE::Image & overl
|
|
|
|
|
|
void ICETools::selectPoints ( const NICE::Image & panel, NICE::Image & overlay, vector<Vector> & x, int color )
|
|
|
{
|
|
|
- fthrow("ICETools::selectPoints -- not yet implemented due to old ICE version.");
|
|
|
+ fthrow(Exception, "ICETools::selectPoints -- not yet implemented due to old ICE version.");
|
|
|
// #ifndef NOVISUAL
|
|
|
// vector<CoordT<double> > points;
|
|
|
// //TODO check this!
|