Hi,

I am trying to use the RLE code for connected-component analysis.
imgbits/imgrle.cc contains a function, label_components, which is not
exported in the header file.  The only related function that is
exported is rle_bounding_boxes.  I was wondering if there is a reason
for why label_components is not being exported, as I would really like
to see all the labels computed by the label_components function.

In the mean time, I am compensating by putting this declaration at the
top of my C++ code:

namespace imgrle {
    int label_components(colib::objlist<intarray> &labels, RLEImage &image);
}

-David

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"ocropus" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/ocropus?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to