Quote:
Originally Posted by ganchara
When you say that the threshold and particle analysis are done in the C++ how does that work, because that would mean you went from C++ for the plane extraction and threshold, to VA to do the convex hull and particle filter, and then back to C++ for the final particle analysis?
|
Code:
binaryImage = colorImage->ThresholdHSL(######);
imaqImage = binaryImage->GetImaqImage();
IVA_ProcessImage(imaqImage); //In here we just convex hull and particle filter
vector<ParticleAnalysisReport> *reports = binaryImage->GetOrderedParticleAnalysisReports();