View Single Post
  #14   Spotlight this post!  
Unread 02-02-2012, 17:27
ganchara ganchara is offline
Registered User
FRC #2523 (Hilltoppers)
Team Role: Programmer
 
Join Date: Feb 2010
Rookie Year: 2009
Location: vermont
Posts: 28
ganchara is an unknown quantity at this point
Re: how to use openCV?

Quote:
Originally Posted by DjScribbles View Post
Code:
binaryImage = colorImage->ThresholdHSL(######);
imaqImage = binaryImage->GetImaqImage();
IVA_ProcessImage(imaqImage); //In here we just convex hull and particle filter
vector<ParticleAnalysisReport> *reports = binaryImage->GetOrderedParticleAnalysisReports();
if the code is in C++ where are you running it? on the driver station or the robot? My team is planning to run our image processing on the DS, which supposedly can't send data back to the robot while in C++.